EditorGUILayout.BeginVerticalstatic function BeginVertical (params options : GUILayoutOption[]) : Rectstatic function BeginVertical (style : GUIStyle, params options : GUILayoutOption[]) : RectParameters
DescriptionBegin a vertical group and get its rect back. This is an extension to GUILayout.BeginVertical. It is used for making compound controls // Compund Button
Rect r = EditorGUILayout.BeginVertical ("Button"); if (GUI.Button (r, GUIContent.none)) Debug.Log ("Go here"); GUILayout.Label ("I'm inside the button"); GUILayout.Label ("So am I"); EditorGUILayout.EndVertical (); |
