RVOSquareObstacleEditor.cs 264 B

123456789101112
  1. using UnityEditor;
  2. using Pathfinding.RVO;
  3. namespace Pathfinding {
  4. [CustomEditor(typeof(RVOSquareObstacle))]
  5. [CanEditMultipleObjects]
  6. public class RVOSquareObstacleEditor : Editor {
  7. public override void OnInspectorGUI () {
  8. DrawDefaultInspector();
  9. }
  10. }
  11. }