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