GUIStyle.fixedHeight 固定高度

var fixedWidth : float

Description描述

If non-0, any GUI elements rendered with this style will have the height specified here.

如果为非0,任意这个类型的渲染的GUI元素将具有这里指定的高度。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	void OnGUI() {
		if (GUI.skin.customStyles.Length > 0)
			Debug.Log(GUI.skin.customStyles[0].fixedHeight);

	}
}
// Prints the value of fixedHeight of customStyles[0]
//打印customStyles[0]的固定高度值

function OnGUI() {
	if(GUI.skin.customStyles.Length > 0)
		Debug.Log(GUI.skin.customStyles[0].fixedHeight);
}
最后修改:2011年1月23日 Sunday 22:39

本脚本参考基于Unity 3.4.1f5

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