📜  unity textmeshpro - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:38.859000             🧑  作者: Mango

代码示例3
using UnityEngine;
using TMPro;

public class quizManager : MonoBehaviour
{
    public TextMeshProUGUI text;
    // Start is called before the first frame update
    void Start()
    {
        text.text = "example";
    }
}