返回介绍

GUILayout.BeginVertical 开始垂直组

发布于 2019-12-18 15:37:46 字数 3810 浏览 955 评论 0 收藏 0

JavaScript => public static function BeginVertical(params options: GUILayoutOption[]): void;
JavaScript => public static function BeginVertical(style: GUIStyle, params options: GUILayoutOption[]): void;
JavaScript => public static function BeginVertical(text: string, style: GUIStyle, params options: GUILayoutOption[]): void;
JavaScript => public static function BeginVertical(image: Texture, style: GUIStyle, params options: GUILayoutOption[]): void;
JavaScript => public static function BeginVertical(content: GUIContent, style: GUIStyle, params options: GUILayoutOption[]): void;
C# => public static void BeginVertical(params GUILayoutOption[] options);
C# =>public static void BeginVertical(GUIStyle style, params GUILayoutOption[] options);
C# =>public static void BeginVertical(string text, GUIStyle style, params GUILayoutOption[] options);
C# =>public static void BeginVertical(Texture image, GUIStyle style, params GUILayoutOption[] options);
C# =>public static void BeginVertical(GUIContent content, GUIStyle style, params GUILayoutOption[] options);

Parameters 参数

textText to display on group.
显示在组上的文本
imageTexture to display on group.
显示在组上的纹理
contentText, image, and tooltip for this group.
用于该组的文本、图片和工具提示
styleThe style to use for background image and padding values. If left out, the background is transparent.
该样式用于背景图片和内边距值。如果不设置,背景是透明的。
optionsAn optional list of layout options that specify extra layouting properties. Any values passed in here will override settings defined by the style.
布局选项指定额外布局属性的一个可选列表。这里传递任意值都将覆盖由style定义的设置。

Description 描述

Begin a vertical control group.

开始一个垂直控件的组。

All controls rendered inside this element will be placed vertically below each other. The group must be closed with a call to EndVertical.

所有被渲染的控件,在这个组里一个接着一个被垂直放置。该组必须调用EndVertical关闭。

JavaScript:

function OnGUI () {	
		// Starts a vertical group
		GUILayout.BeginVertical ("box");
 
		GUILayout.Button ("I'm the top button");
		GUILayout.Button ("I'm the bottom button");
 
		GUILayout.EndVertical();
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void OnGUI() {
        GUILayout.BeginVertical("box");
        GUILayout.Button("I'm the top button");
        GUILayout.Button("I'm the bottom button");
        GUILayout.EndVertical();
    }
}

guilayout

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

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

发布评论

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