返回介绍

GUILayout.FlexibleSpace 弹性空白

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

JavaScript => public static function FlexibleSpace(): void;
C# => public static void FlexibleSpace();

Parameters 参数

Description 描述

Insert a flexible space element.

插入一个弹性空白元素。

Flexible spaces use up any leftover space in a layout.

弹性空白在当前层使用所有剩余的空白。

Note: This will override the GUILayout.ExpandWidth and GUILayout.ExpandHeight

注意:这将重写GUILayout.ExpandWidth 和 GUILayout.ExpandHeight。

JavaScript:

	var sliderValue : float = 1.0;
 
	function OnGUI() {
		// Wrap everything in the designated GUI Area
		GUILayout.BeginArea (Rect (0,0,200,60));
		// Begin the singular Horizontal Group
		GUILayout.BeginHorizontal();
		// Place a Button normally
		GUILayout.RepeatButton ("A button with\ntwo lines");
		// Place a space between the button and the vertical area
		// so it fits the whole area
		GUILayout.FlexibleSpace();
		// Arrange two more Controls vertically beside the Button
		GUILayout.BeginVertical();	
		GUILayout.Box("Value:" + Mathf.Round(sliderValue));
		sliderValue = GUILayout.HorizontalSlider (sliderValue, 0.0, 10);
 
		// End the Groups and Area
		GUILayout.EndVertical();
		GUILayout.EndHorizontal();
		GUILayout.EndArea();
	}

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    public float sliderValue = 1.0F;
    void OnGUI() {
        GUILayout.BeginArea(new Rect(0, 0, 200, 60));
        GUILayout.BeginHorizontal();
        GUILayout.RepeatButton("A button with\ntwo lines");
        GUILayout.FlexibleSpace();
        GUILayout.BeginVertical();
        GUILayout.Box("Value:" + Mathf.Round(sliderValue));
        sliderValue = GUILayout.HorizontalSlider(sliderValue, 0.0F, 10);
        GUILayout.EndVertical();
        GUILayout.EndHorizontal();
        GUILayout.EndArea();
    }
}

guilayout

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

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

发布评论

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