LocationPropertyDataDrawer.cs 2.3 KB

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