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

GUI.Toggle

建议修改

成功!

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

关闭

提交失败

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

关闭

取消

声明

public static bool Toggle(Rect position, bool value, string text);

声明

public static bool Toggle(Rect position, bool value, Texture image);

声明

public static bool Toggle(Rect position, bool value, GUIContent content);

声明

public static bool Toggle(Rect position, bool value, string text, GUIStyle style);

声明

public static bool Toggle(Rect position, bool value, Texture image, GUIStyle style);

声明

public static bool Toggle(Rect position, bool value, GUIContent content, GUIStyle style);

参数

position 屏幕上用于按钮的矩形区域。
value 此按钮是打开还是关闭?
text 在按钮上显示的文本。
image 在按钮上显示的纹理
content 此按钮的文本、图像和工具提示。
style 要使用的样式。如果省略,则使用当前GUISkin中的toggle样式。

返回值

bool 按钮的新值。

描述

创建一个开/关切换按钮。

// Draws 2 toggle controls, one with a text, the other with an image.

using UnityEngine; using System.Collections;

public class ExampleClass : MonoBehaviour { public Texture aTexture;

private bool toggleTxt = false; private bool toggleImg = false;

void OnGUI() { if (!aTexture) { Debug.LogError("Please assign a texture in the inspector."); return; }

toggleTxt = GUI.Toggle(new Rect(10, 10, 100, 30), toggleTxt, "A Toggle text"); toggleImg = GUI.Toggle(new Rect(10, 50, 50, 50), toggleImg, aTexture); } }