有一次因为 ttf 分成简体和繁体两个。。所以就需要动态改变NGUI 中 UILabel 的字体,但是不知道 UILabel 保存字体的字段是哪个
网上搜到。。在这里记录一下
using UnityEngine;
using System.Collections; public class ChangeFont : MonoBehaviour { public UILabel label;
public Font otherFont; void Start()
{
label.trueTypeFont = otherFont;
} }