版本: Unity 6 (6000.0)
语言English
  • C#

GUILayout.Toggle

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交,但我们确实阅读了用户提出的每个更改建议,并在适用的情况下进行更新。

关闭

提交失败

由于某些原因,您的更改建议无法提交。请 <a>稍后再试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

public static bool Toggle(bool value, Texture image, params GUILayoutOption[] options);

声明

public static bool Toggle(bool value, string text, params GUILayoutOption[] options);

声明

public static bool Toggle(bool value, GUIContent content, params GUILayoutOption[] options);

声明

public static bool Toggle(bool value, Texture image, GUIStyle style, params GUILayoutOption[] options);

声明

public static bool Toggle(bool value, string text, GUIStyle style, params GUILayoutOption[] options);

声明

public static bool Toggle(bool value, GUIContent content, GUIStyle style, params GUILayoutOption[] options);

参数

value 按钮是开启还是关闭?
text 在按钮上显示的文本。
image 在按钮上显示的纹理
content 此按钮的文本、图像和工具提示。
style 要使用的样式。如果省略,则使用当前 GUISkin 中的 button 样式。
options 一个可选的布局选项列表,用于指定额外的布局属性。此处传递的任何值都将覆盖 style 中定义的设置。
其他资源:GUILayout.WidthGUILayout.HeightGUILayout.MinWidthGUILayout.MaxWidthGUILayout.MinHeightGUILayout.MaxHeightGUILayout.ExpandWidthGUILayout.ExpandHeight

返回值

bool 按钮的新值。

描述

制作一个开关按钮。


游戏视图中的切换按钮。

using UnityEngine;

public class ExampleScript : MonoBehaviour { // Draws 2 toggle controls, one with a text, the other with an image. Texture aTexture;

bool toggleTxt = false; bool toggleImg = false;

void OnGUI() { if (!aTexture) { Debug.LogError("Please assign a texture in the inspector."); return; } toggleTxt = GUILayout.Toggle(toggleTxt, "A Toggle text"); toggleImg = GUILayout.Toggle(toggleImg, aTexture); } }