GUIStyle.stretchWidth 拉伸宽度

var stretchWidth : bool

Description描述

Can GUI elements of this style be stretched horizontally for better layouting?

为更好的布局这个样式的GUI元素可以水平拉伸么?

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		if (GUI.skin.customStyles.Length > 0)
			GUI.skin.customStyles[0].stretchWidth = true;

	}
}
function OnGUI() {
	if(GUI.skin.customStyles.Length > 0)
		GUI.skin.customStyles[0].stretchWidth = true;
}
最后修改:2011年1月23日 Sunday 23:06

本脚本参考基于Unity 3.4.1f5

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