GUIText.font 字体

var font : Font

Description描述

The font used for the text.

用于文本的字体。

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public Font font;
	public void Awake() {
		guiText.font = font;
	}
}
// Assign manually a font from the inspector to the GUIText
//从检视面板,手工指定一个字体给GUIText

var font : Font;
guiText.font = font;
最后修改:2011年1月24日 Monday 18:00

本脚本参考基于Unity 3.4.1f5

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