VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
void AVR.Core.Attributes.FoldoutPropertyDrawer.ContinuationGroup ( SerializedProperty  prop)
inlineprivate

Definition at line 54 of file AVR_Attributes_PropertyDrawers.cs.

54  {
55  if (last_foldout)
56  {
57  EditorGUI.indentLevel++;
58  EditorGUILayout.PropertyField(prop, new GUIContent(prop.displayName));
59  EditorGUI.indentLevel--;
60  }
62  }