返回介绍

GUILayout.Toolbar 工具栏

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

JavaScript => public static function Toolbar(selected: int, texts: string[], params options: GUILayoutOption[]): int;
JavaScript => public static function Toolbar(selected: int, images: Texture[], params options: GUILayoutOption[]): int;
JavaScript => public static function Toolbar(selected: int, content: GUIContent[], params options: GUILayoutOption[]): int;
JavaScript => public static function Toolbar(selected: int, texts: string[], style: GUIStyle, params options: GUILayoutOption[]): int;
JavaScript => public static function Toolbar(selected: int, images: Texture[], style: GUIStyle, params options: GUILayoutOption[]): int;
JavaScript => public static function Toolbar(selected: int, contents: GUIContent[], style: GUIStyle, params options: GUILayoutOption[]): int;

C# => public static int Toolbar(int selected, string[] texts, params GUILayoutOption[] options);
C# => public static int Toolbar(int selected, Texture[] images, params GUILayoutOption[] options);
C# => public static int Toolbar(int selected, GUIContent[] content, params GUILayoutOption[] options);
C# => public static int Toolbar(int selected, string[] texts, GUIStyle style, params GUILayoutOption[] options);
C# => public static int Toolbar(int selected, Texture[] images, GUIStyle style, params GUILayoutOption[] options);
C# => public static int Toolbar(int selected, GUIContent[] contents, GUIStyle style, params GUILayoutOption[] options);

Parameters 参数

selectedThe index of the selected button.
被选择按钮的索引
textsAn array of strings to show on the buttons.
显示在按钮上的字符串的数组。
imagesAn array of textures on the buttons.
显示在按钮上的纹理的数组
contentsAn array of text, image and tooltips for the button.
用于这个按钮的文本、图片和工具提示的数组。
styleThe style to use. If left out, the button style from the current GUISkin is used.
使用的样式。如果不使用,该开关按钮使用当前的GUISkin皮肤
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 返回

int The index of the selected button.

返回整数型,被选择按钮的索引。

Description 描述

Make a toolbar.

创建一个工具栏。

JavaScript:

	var toolbarInt : int = 0;
	var toolbarStrings : String[] = ["Toolbar1", "Toolbar2", "Toolbar3"];
 
	function OnGUI () {
		toolbarInt = GUILayout.Toolbar (toolbarInt, toolbarStrings);
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public int toolbarInt = 0;
    public string[] toolbarStrings = new string[] {"Toolbar1", "Toolbar2", "Toolbar3"};
    void OnGUI() {
        toolbarInt = GUILayout.Toolbar(toolbarInt, toolbarStrings);
    }
}

guilayout

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

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

发布评论

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