AR + GPS Location  3.0.0
All Classes Namespaces Functions Variables Properties Events Pages
LocationPropertyDataDrawer.cs
1 using UnityEditor;
2 using UnityEngine;
3 
4 namespace ARLocation
5 {
6  [CustomPropertyDrawer(typeof(LocationPropertyData))]
7  public class LocationPropertyDataDrawer : PropertyDrawer
8  {
9  private SerializedProperty type;
10  private SerializedProperty location;
11  private SerializedProperty locationData;
12  private SerializedProperty overrideAltitudeData;
13 
14  public void FindSerializedProperties(SerializedProperty property)
15  {
16  type = property.FindPropertyRelative("LocationInputType");
17  location = property.FindPropertyRelative("Location");
18  locationData = property.FindPropertyRelative("LocationData");
19  overrideAltitudeData = property.FindPropertyRelative("OverrideAltitudeData");
20  }
21 
22  public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
23  {
24  FindSerializedProperties(property);
25 
26  var height = EditorGUIUtility.singleLineHeight;
27 
28  if (type.enumValueIndex == (int) LocationPropertyData.LocationPropertyType.Location)
29  {
30  height += EditorGUI.GetPropertyHeight(location);
31  }
32  else
33  {
34  height += EditorGUIUtility.singleLineHeight;
35  height += EditorGUI.GetPropertyHeight(overrideAltitudeData, includeChildren: true);
36  }
37 
38  return height;
39  }
40 
41  public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
42  {
43  FindSerializedProperties(property);
44 
45  EditorGUI.BeginProperty(position, label, property);
46  EditorGUI.PropertyField(position, type, includeChildren:true);
47 
48  position.y += EditorGUIUtility.singleLineHeight;
49 
50  if (type.enumValueIndex == (int) LocationPropertyData.LocationPropertyType.Location)
51  {
52  EditorGUI.PropertyField(position, location, includeChildren:true);
53  }
54  else
55  {
56  EditorGUI.PropertyField(position, locationData, includeChildren:true);
57  position.y += EditorGUI.GetPropertyHeight(locationData, includeChildren: true);
58  EditorGUI.PropertyField(position, overrideAltitudeData, includeChildren: true);
59  }
60 
61  EditorGUI.EndProperty();
62  }
63  }
64 }
ARLocation.LocationPropertyData
Definition: PlaceAtLocation.cs:25
ARLocation.LocationPropertyDataDrawer
Definition: LocationPropertyDataDrawer.cs:8
ARLocation
Definition: ARLocationConfigInspector.cs:7