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

GUI.enabled

建议更改

成功!

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

关闭

提交失败

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

关闭

取消

public static bool enabled;

描述

GUI 是否启用?

将此值设置为 false 以禁用所有 GUI 交互。所有控件都将半透明显示,并且不会响应用户输入。


启用/禁用 GUI 控件。

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { // The value tracking whether or not the extended options can be toggled. public bool allOptions = true;

// The 2 extended options. public bool extended1 = true; public bool extended2 = true;

void OnGUI() { // Make a toggle control that allows the user to edit some extended options. allOptions = GUI.Toggle(new Rect(0, 0, 150, 20), allOptions, "Edit All Options");

// Assign the value of it to the GUI.enabled - if the checkbox above // is disabled, so will these GUI elements be GUI.enabled = allOptions;

// These two controls will only be enabled if the button above is on. extended1 = GUI.Toggle(new Rect(20, 20, 130, 20), extended1, "Extended Option 1"); extended2 = GUI.Toggle(new Rect(20, 40, 130, 20), extended2, "Extended Option 2");

// We're done with the conditional block, so make GUI code be enabled again. GUI.enabled = true;

// Make an Ok button if (GUI.Button(new Rect(0, 60, 150, 20), "OK")) { print("user clicked ok"); } } }