返回介绍

GUILayout.Toggle 开关按钮

发布于 2019-12-18 15:37:47 字数 4790 浏览 1043 评论 0 收藏 0

JavaScript => public static function Toggle(value: bool, image: Texture, params options: GUILayoutOption[]): bool;
JavaScript =>public static function Toggle(value: bool, text: string, params options: GUILayoutOption[]): bool;
JavaScript =>public static function Toggle(value: bool, content: GUIContent, params options: GUILayoutOption[]): bool;
JavaScript =>public static function Toggle(value: bool, image: Texture, style: GUIStyle, params options: GUILayoutOption[]): bool;
JavaScript =>public static function Toggle(value: bool, text: string, style: GUIStyle, params options: GUILayoutOption[]): bool;
JavaScript =>public static function Toggle(value: bool, content: GUIContent, style: GUIStyle, params options: GUILayoutOption[]): bool;

C# => public static bool Toggle(bool value, Texture image, params GUILayoutOption[] options);
C# => public static bool Toggle(bool value, string text, params GUILayoutOption[] options);
C# => public static bool Toggle(bool value, GUIContent content, params GUILayoutOption[] options);
C# => public static bool Toggle(bool value, Texture image, GUIStyle style, params GUILayoutOption[] options);
C# => public static bool Toggle(bool value, string text, GUIStyle style, params GUILayoutOption[] options);
C# => public static bool Toggle(bool value, GUIContent content, GUIStyle style, params GUILayoutOption[] options);

Parameters 参数

valueIs the button on or off?
这个按钮时打开还是关闭的?
textText to display on the button.\\显示在按钮上的文本。
imageTexture to display on the button.
显示在按钮上的纹理
contentText, image and tooltip for this button.
用于这个按钮的文本、图片和工具提示。
styleThe style to use. If left out, the button style from the current GUISkin is used.
用于这个按钮的文本、图片和工具提示。
optionsAn optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
布局选项指定额外布局属性的一个可选列表。这里传递任意值都将覆盖由style定义的设置。

Returns 返回

bool The new value of the button.

返回布尔类型,该按钮的新值。

Description 描述

Make an on/off toggle button.

创建一个开关按钮。类似于单选按钮。

JavaScript:

	// Draws 2 toggle controls, one with a text, the other with an image.
	var aTexture : Texture;
 
	private var toggleTxt : boolean = false;
	private var toggleImg : boolean = false;
 
	function 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);
	}

C#:

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 = GUILayout.Toggle(toggleTxt, "A Toggle text");
        toggleImg = GUILayout.Toggle(toggleImg, aTexture);
    }
}

guilayout

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

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

发布评论

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