代码动态改变 NGUI UILabel 的字体

时间:2022-08-18 05:31:22

有一次因为 ttf 分成简体和繁体两个。。所以就需要动态改变NGUI 中 UILabel 的字体,但是不知道 UILabel 保存字体的字段是哪个

网上搜到。。在这里记录一下

 using UnityEngine;
using System.Collections; public class ChangeFont : MonoBehaviour { public UILabel label;
public Font otherFont; void Start()
{
label.trueTypeFont = otherFont;
} }