AR + GPS Location  3.0.0
All Classes Namespaces Functions Variables Properties Events Pages
ConditionalPropertyDrawer.cs
1 using System.Collections;
2 using System.Collections.Generic;
3 using UnityEngine;
4 using UnityEditor;
5 
6 namespace ARLocation
7 {
8  [CustomPropertyDrawer(typeof(ConditionalPropertyAttribute))]
9  public class ConditionalPropertyDrawer : PropertyDrawer
10  {
11  public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
12  {
13  var conditionalAttribute = (ConditionalPropertyAttribute) attribute;
14  var name = conditionalAttribute.Name;
15 
16  var path = property.propertyPath;
17  var prop = property.serializedObject.FindProperty(path.Replace(property.name, name));
18 
19  if (prop != null)
20  {
21  if (prop.boolValue)
22  {
23  EditorGUI.PropertyField(position, property);
24  }
25  }
26  }
27  }
28 }
ARLocation.ConditionalPropertyAttribute
Definition: ConditionalPropertyAttribute.cs:7
ARLocation
Definition: ARLocationConfigInspector.cs:7
ARLocation.ConditionalPropertyDrawer
Definition: ConditionalPropertyDrawer.cs:10