GUIStyle.name 名字

var name : string

Description描述

The name of this GUIStyle. Used for getting them based on name....

这个GUIStyle的名字。用于获取基于名字的样式。

using UnityEngine;
using System.Collections;

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

	}
}
// Prints the name of the style at customStyles[0]
//打印样式在ustomStyles[0]的名字
function OnGUI() {
	if(GUI.skin.customStyles.Length > 0)
		Debug.Log(GUI.skin.customStyles[0].name);
}
最后修改:2011年1月20日 Thursday 16:58

本脚本参考基于Unity 3.4.1f5

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