📜  c# 将变量显示到文本游戏对象 - C# 代码示例

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

代码示例1
using UnityEngine.UI;  //its a must to access new UI in script
 public class YourClass : MonoBehaviour
 {
     public Text Score_UIText; // assign it from inspector
 void Start()
 {
    Score_UIText.text = yourscore_variable;
 }
 
 }

// I found it on the web IDK if it's work or not, Good luck :)