Esta noticia ha sido probado por nuestros especialistas para asegurar la exactitud de nuestra esta sección.
Ejemplo 1: cambiar textmesh pro text
usingUnityEngine;usingSystem.Collections;usingTMPro;publicclassExampleClass:MonoBehaviourvoidExample()TextMeshPro textmeshPro =GetComponent<TextMeshPro>();
textmeshPro.SetText("The first number is 0 and the 2nd is 1:2 and the 3rd is 3:0.",4,6.345f,3.5f);// The text displayed will be:// The first number is 4 and the 2nd is 6.35 and the 3rd is 4.
Ejemplo 2: cómo cambiar la unidad textMesh Pro
// If you are trying to chnage the text on a TextMeshPro:publicTextMeshPro 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"
Puntuaciones y reseñas
Si tienes algún titubeo y forma de prosperar nuestro artículo te insinuamos ejecutar una disquisición y con placer lo estudiaremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)