ConditionalPropertyDrawer.cs 790 B

1234567891011121314151617181920212223242526
  1. using UnityEngine;
  2. using UnityEditor;
  3. namespace ARLocation
  4. {
  5. [CustomPropertyDrawer(typeof(ConditionalPropertyAttribute))]
  6. public class ConditionalPropertyDrawer : PropertyDrawer
  7. {
  8. public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
  9. {
  10. var conditionalAttribute = (ConditionalPropertyAttribute) attribute;
  11. var name = conditionalAttribute.Name;
  12. var path = property.propertyPath;
  13. var prop = property.serializedObject.FindProperty(path.Replace(property.name, name));
  14. if (prop != null)
  15. {
  16. if (prop.boolValue)
  17. {
  18. EditorGUI.PropertyField(position, property);
  19. }
  20. }
  21. }
  22. }
  23. }