“Cara Mengubah TextMesh Pro Unity” Kode Jawaban

Persatuan Dapatkan Komponen TextMesh Pro

GetComponent<TMPro.TextMeshProUGUI>().text
Cruel Caribou

Cara Mengubah TextMesh Pro Unity

// If you are trying to chnage the text on a TextMeshPro:
  
public TextMeshPro TextMeshProObject;
//you shouldnt need to get component the editor should take care of this for you when 
//you drop it since you have the object set to TextMeshPro and not just GameObject
TextMeshProObject = GetComponent<TextMeshPro>();
TextMeshProObject.text = "Hello";

// If you are trying to change the text from a gameobject:
TextMeshProUGUI TextMeshProLable = YourGameObject.GetComponent<TextMeshProUGUI>();
TextMeshProLable.text = "Your Text"

Obnoxious Oystercatcher

Jawaban yang mirip dengan “Cara Mengubah TextMesh Pro Unity”

Pertanyaan yang mirip dengan “Cara Mengubah TextMesh Pro Unity”

Lebih banyak jawaban terkait untuk “Cara Mengubah TextMesh Pro Unity” di C#

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya