TextFontChange.cs 346 B

12345678910111213141516171819202122
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. /// <summary>
  6. /// 文本变更测试
  7. /// </summary>
  8. public class TextFontChange : MonoBehaviour
  9. {
  10. public Font font;
  11. private void Awake()
  12. {
  13. //Text.PublicFont = font;
  14. }
  15. private void Start()
  16. {
  17. }
  18. }