label | (可选)开关前的标签。 |
value | 开关的显示状态。 |
style | 可选 GUIStyle。 |
options | An optional list of layout options that specify extra layouting
properties. Any values passed in here will override settings defined by the style .另请参阅:GUILayout.Width、GUILayout.Height、GUILayout.MinWidth、GUILayout.MaxWidth、GUILayout.MinHeight、 GUILayout.MaxHeight、GUILayout.ExpandWidth、GUILayout.ExpandHeight。 |
bool 开关的选中状态。
创建一个开关。
Show a button if the toggle control is selected.
using UnityEngine;
using UnityEditor;
public class EditorGUILayoutToggle : UnityEditor.EditorWindow
{
bool showBtn = true;
[MenuItem("Examples/Editor GUILayout Toggle Usage")]
static void Init()
{
EditorGUILayoutToggle window = (EditorGUILayoutToggle)EditorWindow.GetWindow(typeof(EditorGUILayoutToggle), true, "My Empty Window");
window.Show();
}
void OnGUI()
{
showBtn = EditorGUILayout.Toggle("Show Button", showBtn);
if (showBtn)
if (GUILayout.Button("Close"))
this.Close();
}
}