-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using UniRecast.Runtime.Toolsets; | ||
using UnityEditor; | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Editor | ||
{ | ||
[CustomEditor(typeof(UniRcCrowdAgentProfilingTool))] | ||
public class UniRcCrowdAgentProfilingToolEditor : UniRcToolEditor | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using UniRecast.Runtime.Toolsets; | ||
using UnityEditor; | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Editor | ||
{ | ||
[CustomEditor(typeof(UniRcDynamicUpdateTool))] | ||
public class UniRcDynamicUpdateToolEditor : UniRcToolEditor | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using UniRecast.Runtime.Toolsets; | ||
using UnityEditor; | ||
|
||
namespace UniRecast.Editor | ||
{ | ||
[CustomEditor(typeof(UniRcJumpLinkBuilderTool))] | ||
public class UniRcJumpLinkBuilderToolEditor : UniRcToolEditor | ||
{ | ||
|
||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using UniRecast.Runtime.Toolsets; | ||
using UnityEditor; | ||
|
||
namespace UniRecast.Editor | ||
{ | ||
[CustomEditor(typeof(UniRcObstacleTool))] | ||
public class UniRcObstacleToolEditor : UniRcToolEditor | ||
{ | ||
|
||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using UniRecast.Runtime.Toolsets; | ||
using UnityEditor; | ||
|
||
namespace UniRecast.Editor | ||
{ | ||
[CustomEditor(typeof(UniRcOffMeshConnectionTool))] | ||
public class UniRcOffMeshConnectionToolEditor : UniRcToolEditor | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using UniRecast.Runtime.Toolsets; | ||
using UnityEditor; | ||
|
||
namespace UniRecast.Editor | ||
{ | ||
[CustomEditor(typeof(UniRcTileTool))] | ||
public class UniRcTileToolEditor : UniRcToolEditor | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Runtime.Toolsets | ||
{ | ||
public class UniRcCrowdAgentProfilingTool : MonoBehaviour | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Runtime.Toolsets | ||
{ | ||
public class UniRcCrowdTool : MonoBehaviour | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Runtime.Toolsets | ||
{ | ||
public class UniRcDynamicUpdateTool : MonoBehaviour | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Runtime.Toolsets | ||
{ | ||
public class UniRcJumpLinkBuilderTool : MonoBehaviour | ||
{ | ||
|
||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Runtime.Toolsets | ||
{ | ||
public class UniRcObstacleTool : MonoBehaviour | ||
{ | ||
|
||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Runtime.Toolsets | ||
{ | ||
public class UniRcOffMeshConnectionTool : MonoBehaviour | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
using UnityEngine; | ||
|
||
namespace UniRecast.Runtime.Toolsets | ||
{ | ||
public class UniRcTileTool : MonoBehaviour | ||
{ | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.