GUIStyle.lineHeight 行高

var lineHeight : float

Description描述

The height of one line of text with this style, measured in pixels. (Read Only)

这个样式的文本一行的高度,以像素计算。(只读)

using UnityEngine;
using System.Collections;

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

	}
}
// Prints the lineHeight value of customStyles[0]
//打印customStyles[0]的行高值

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

本脚本参考基于Unity 3.4.1f5

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