VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
override void AVR.Core.Attributes.ReadOnlyDrawer.OnGUI ( Rect  position,
SerializedProperty  property,
GUIContent  label 
)
inline

Definition at line 13 of file AVR_Attributes_PropertyDrawers.cs.

13  {
14  GUI.enabled = false;
15  EditorGUI.PropertyField(position, property, label, true);
16  GUI.enabled = true;
17  }