OverrideAltitudeDataDrawer.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. using UnityEngine;
  2. using UnityEditor;
  3. namespace ARLocation
  4. {
  5. [CustomPropertyDrawer(typeof(OverrideAltitudeData))]
  6. public class OverrideAltitudeDataDrawer : PropertyDrawer
  7. {
  8. public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
  9. {
  10. EditorGUI.BeginProperty(position, label, property);
  11. var initialRect = EditorGUI.IndentedRect(position); //position;
  12. position = EditorGUI.PrefixLabel(position, GUIUtility.GetControlID(FocusType.Passive), label);
  13. var indent = EditorGUI.indentLevel;
  14. EditorGUI.indentLevel = 0;
  15. // EditorGUI.IndentedRect(position);
  16. float height = 20.0f;
  17. var boolRect = new Rect(position.x, position.y, 30, height);
  18. var altitudeRect = new Rect(position.x, position.y + 20, 180, height);
  19. var altitudeLabelRect = new Rect(initialRect.x, position.y + height, 50, height);
  20. var altitudeModeRect = new Rect(position.x, position.y + (2 * height), 180, height);
  21. var altitudeModeLabelRect = new Rect(initialRect.x, position.y + (2 * height), 50, height);
  22. EditorGUI.PropertyField(boolRect, property.FindPropertyRelative("OverrideAltitude"), GUIContent.none);
  23. if (property.FindPropertyRelative("OverrideAltitude").boolValue)
  24. {
  25. var x = new GUIContent();
  26. var y = new GUIContent();
  27. x.text = "Altitude";
  28. EditorGUI.PrefixLabel(altitudeLabelRect, x);
  29. // EditorGUI.PrefixLabel(position, GUIUtility.GetControlID(FocusType.Passive), label);
  30. EditorGUI.PropertyField(altitudeRect, property.FindPropertyRelative("Altitude"), GUIContent.none);
  31. y.text = "Altitude Mode";
  32. EditorGUI.PrefixLabel(altitudeModeLabelRect, y);
  33. EditorGUI.PropertyField(altitudeModeRect, property.FindPropertyRelative("AltitudeMode"), GUIContent.none);
  34. }
  35. EditorGUI.indentLevel = indent;
  36. EditorGUI.EndProperty();
  37. }
  38. public override float GetPropertyHeight(SerializedProperty property,
  39. GUIContent label)
  40. {
  41. if (property.FindPropertyRelative("OverrideAltitude").boolValue)
  42. {
  43. return base.GetPropertyHeight(property, label) * 2 + 20;
  44. }
  45. else
  46. {
  47. return base.GetPropertyHeight(property, label); // * 2 + 20;
  48. }
  49. // Height is two times the standard height plus 20 pixels
  50. }
  51. }
  52. }