blob: 0f1fb06750f65b793474e81bdef258539f4120c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
using UnityEditor;
using Pathfinding.RVO;
namespace Pathfinding {
[CustomEditor(typeof(RVONavmesh))]
public class RVONavmeshEditor : EditorBase {
protected override void Inspector () {
EditorGUILayout.HelpBox("This component is deprecated. The RVOSimulator now has an option to take the navmesh into account automatically.", MessageType.Warning);
}
}
}
|