GUILayout.ExpandWidth 液态宽度

static function ExpandWidth (expand : bool) : GUILayoutOption

Description描述

Option passed to a control to allow or disallow horizontal expansion.

传递给控件是否允许水平方向液化的选项。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		GUILayout.BeginVertical();
		GUILayout.Button("Short Button", GUILayout.ExpandWidth(false));
		GUILayout.Button("Very very long Button");
		GUILayout.EndVertical();
	}
}
function OnGUI () {
	GUILayout.BeginVertical();
	GUILayout.Button("Short Button", GUILayout.ExpandWidth(false));
	GUILayout.Button("Very very long Button");
	GUILayout.EndVertical();
}
最后修改:2011年1月14日 Friday 19:23

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。