“Cómo cambiar TextMesh Pro Unity” Código de respuesta

Unity Get TextMesh Pro componente

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

Cómo cambiar 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

Respuestas similares a “Cómo cambiar TextMesh Pro Unity”

Preguntas similares a “Cómo cambiar TextMesh Pro Unity”

Más respuestas relacionadas con “Cómo cambiar TextMesh Pro Unity” en C#

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código