关闭由 BeginVertical 开始的组。
另请参阅:EditorGUILayout.BeginVertical
Vertical Compound group.
// Create a Vertical Compound Button
using UnityEngine;
using UnityEditor;
public class EndVerticalCS : EditorWindow
{
[MenuItem("Examples/Begin-End Vertical usage")]
static void Init()
{
EditorWindow window = GetWindow(typeof(EndVerticalCS));
window.Show();
}
void OnGUI()
{
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();
}
}