6 [CustomPropertyDrawer(typeof(LocationPropertyData))]
9 private SerializedProperty type;
10 private SerializedProperty location;
11 private SerializedProperty locationData;
12 private SerializedProperty overrideAltitudeData;
14 public void FindSerializedProperties(SerializedProperty property)
16 type =
property.FindPropertyRelative(
"LocationInputType");
17 location =
property.FindPropertyRelative(
"Location");
18 locationData =
property.FindPropertyRelative(
"LocationData");
19 overrideAltitudeData =
property.FindPropertyRelative(
"OverrideAltitudeData");
22 public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
24 FindSerializedProperties(property);
26 var height = EditorGUIUtility.singleLineHeight;
30 height += EditorGUI.GetPropertyHeight(location);
34 height += EditorGUIUtility.singleLineHeight;
35 height += EditorGUI.GetPropertyHeight(overrideAltitudeData, includeChildren:
true);
41 public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
43 FindSerializedProperties(property);
45 EditorGUI.BeginProperty(position, label, property);
46 EditorGUI.PropertyField(position, type, includeChildren:
true);
48 position.y += EditorGUIUtility.singleLineHeight;
52 EditorGUI.PropertyField(position, location, includeChildren:
true);
56 EditorGUI.PropertyField(position, locationData, includeChildren:
true);
57 position.y += EditorGUI.GetPropertyHeight(locationData, includeChildren:
true);
58 EditorGUI.PropertyField(position, overrideAltitudeData, includeChildren:
true);
61 EditorGUI.EndProperty();