static function BeginVertical (params options : GUILayoutOption[]) : Rect
static function BeginVertical (style : GUIStyle, params options : GUILayoutOption[]) : Rect
Description描述
Begin a vertical group and get its rect back.
开始一个垂直组并获取它的返回矩形。
This is an extension to GUILayout.BeginVertical. It can be used for making compound controls
这是GUILayout.BeginVertical的扩展。它可以用于制作混合控件。
Vertical Compound group.
垂直混合组。
// Create a Vertical Compound Button
//创建一个垂直混合按钮
class BeginEndVerticalExample extends EditorWindow {
@MenuItem("Examples/Begin-End Vertical usage")
static function Init() {
var window = GetWindow(BeginEndVerticalExample);
window.Show();
}
function OnGUI() {
var r : Rect = 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();
}
}