1 using System.Collections;
2 using System.Collections.Generic;
8 [CustomPropertyDrawer(typeof(ConditionalPropertyAttribute))]
11 public override void OnGUI(Rect position, SerializedProperty property, GUIContent label)
14 var name = conditionalAttribute.Name;
16 var path =
property.propertyPath;
17 var prop =
property.serializedObject.FindProperty(path.Replace(property.name, name));
23 EditorGUI.PropertyField(position, property);