GUIText.fontvar font : FontDescriptionThe font used for the text.
JavaScripts
using UnityEngine;
using System.Collections; public class example : MonoBehaviour { public Font font; void Awake() { guiText.font = font; } } import UnityEngine
import System.Collections class example(MonoBehaviour): public font as Font def Awake(): guiText.font = font |
