返回介绍

GUI.enabled 是否启用?

发布于 2019-12-18 15:37:45 字数 2845 浏览 1002 评论 0 收藏 0

JavaScript => public static var enabled: bool;
C# => public static bool enabled;

Description 描述

Is the GUI enabled?

判断GUI是否启用了。

Set this value to false to disable all GUI interaction. All controls will be draw semi-transparently, and will not respond to user input.

设置为false禁用所用GUI互动,所有控件将被绘制半透明,并且将不响应用户输入。

JavaScript:

// The value tracking whether or not the extended options can be toggled.
	var allOptions : boolean = true;
	// The 2 extended options.
	var extended1 : boolean = true;
	var extended2 : boolean = true;
	function OnGUI () {
		// Make a toggle control that allows the user to edit some extended options.
		allOptions = GUI.Toggle (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 (Rect (20,20,130,20), extended1, "Extended Option 1");
		extended2 = GUI.Toggle (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 (Rect (0, 60, 150, 20), "Ok"))
			print ("user clicked ok");
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public bool allOptions = true;
    public bool extended1 = true;
    public bool extended2 = true;
    void OnGUI() {
        allOptions = GUI.Toggle(new Rect(0, 0, 150, 20), allOptions, "Edit All Options");
        GUI.enabled = allOptions;
        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");
        GUI.enabled = true;
        if (GUI.Button(new Rect(0, 60, 150, 20), "Ok"))
            print("user clicked ok");
 
    }
}

gui

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文