9 [CustomEditor(typeof(LocationPath))]
13 SerializedProperty alpha;
14 SerializedProperty locations;
15 SerializedProperty sceneViewScale;
16 SerializedProperty splineType;
20 private void OnEnable()
24 AddOnSceneGUIDelegate(OnSceneGuiDelegate);
30 #if UNITY_2019_1_OR_NEWER
31 private void AddOnSceneGUIDelegate(Action<SceneView> del)
33 SceneView.duringSceneGui += del;
36 private void AddOnSceneGUIDelegate(SceneView.OnSceneFunc del)
38 SceneView.onSceneGUIDelegate += del;
42 #if UNITY_2019_1_OR_NEWER
43 private void RemoveOnSceneGUIDelegate(Action<SceneView> del)
45 SceneView.duringSceneGui -= del;
48 private void RemoveOnSceneGUIDelegate(SceneView.OnSceneFunc del)
50 SceneView.onSceneGUIDelegate -= del;
55 private void OnSceneGuiDelegate(SceneView sceneview)
60 private void FindProperties()
62 alpha = serializedObject.FindProperty(
"Alpha");
63 locations = serializedObject.FindProperty(
"Locations");
64 sceneViewScale = serializedObject.FindProperty(
"SceneViewScale");
65 splineType = serializedObject.FindProperty(
"SplineType");
71 RemoveOnSceneGUIDelegate(OnSceneGuiDelegate);
82 GUILayout.BeginArea(
new Rect(20, 20, 200, 200));
84 var rect = EditorGUILayout.BeginVertical();
85 GUI.color =
new Color(1, 1, 1, 0.4f);
86 GUI.Box(rect, GUIContent.none);
88 GUI.color = Color.white;
90 GUILayout.BeginHorizontal();
91 GUILayout.FlexibleSpace();
92 GUILayout.Label(
"ARLocation Path");
93 GUILayout.FlexibleSpace();
94 GUILayout.EndHorizontal();
96 var style =
new GUIStyle
98 margin =
new RectOffset(0, 0, 4, 200)
101 GUILayout.BeginHorizontal(style);
102 GUI.backgroundColor =
new Color(0.2f, 0.5f, 0.92f);
104 GUILayout.Label(
"View Scale: ", GUILayout.Width(80.0f));
107 var newViewScale = GUILayout.HorizontalSlider(sceneViewScale.floatValue, 0.01f, 1.0f);
109 if (Math.Abs(newViewScale - sceneViewScale.floatValue) > 0.000001f)
111 sceneViewScale.floatValue = newViewScale;
112 serializedObject.ApplyModifiedProperties();
115 GUILayout.Label(sceneViewScale.floatValue.ToString(
"0.00"), GUILayout.Width(32.0f));
118 GUILayout.EndHorizontal();
120 EditorGUILayout.EndVertical();
140 public override void OnInspectorGUI()
142 serializedObject.Update();
144 if (((SplineType)splineType.enumValueIndex) == SplineType.CatmullromSpline)
146 EditorGUILayout.Slider(alpha, 0, 1,
"Curve Alpha");
149 EditorGUILayout.PropertyField(splineType);
150 EditorGUILayout.PropertyField(locations,
true);
152 serializedObject.ApplyModifiedProperties();
158 var pathLocations = locationPath.
Locations;
160 if (pathLocations ==
null || pathLocations.Length < 2)
165 var viewScale = sceneViewScale.floatValue;
167 var points =
new Vector3[pathLocations.Length];
169 for (var i = 0; i < pathLocations.Length; i++)
171 var loc = pathLocations[i];
172 points[i] = Vector3.Scale(loc.ToVector3(),
new Vector3(viewScale, 1, viewScale));
177 var effScale = (1.0f + Mathf.Cos(viewScale * Mathf.PI / 2 - Mathf.PI));
178 var s =
new Vector3(effScale, 1.0f, effScale);
181 var newCPs =
new Vector3[locationPath.
Locations.Length];
182 for (var i = 0; i < locationPath.
Locations.Length; i++)
195 Handles.color = Color.blue;
196 Handles.SphereHandleCap(i, Vector3.Scale(p, s), Quaternion.identity, 0.4f, EventType.Repaint);
197 Handles.Label(Vector3.Scale(p, s), loc.Label ==
"" ? (
" Point " + i) : loc.Label);
198 newCPs[i] = Vector3.Scale(p, s);
202 if (((SplineType)splineType.enumValueIndex) == SplineType.CatmullromSpline)
213 for (var i = 0; i < (newSample.Length - 2); i++)
215 Handles.color = Color.green;
216 Handles.DrawLine(newSample[i + 1], newSample[i]);