GUIStyle.font 字体

var font : Font

Description描述

The font to use for rendering. If null, the default font for the current GUISkin is used instead.

用于渲染的字体,如果为null,当前的GUISkin的默认字体将被使用。

using UnityEngine;
using System.Collections;

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

	}
}
// Prints name of the font that customStyles[0] is using
//打印customStyles[0]使用的字体的名字

function OnGUI() {
	if(GUI.skin.customStyles.Length > 0)
		Debug.Log("Font name: " + GUI.skin.customStyles[0].font.name);
}
最后修改:2011年1月20日 Thursday 21:36

本脚本参考基于Unity 3.4.1f5

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