Answers for "unity textmesh pro change color"

C#
10

unity change text color

// To change the color of a text, see below
GameObject.GetComponent<Text>().color = Color.black;
Posted by: Guest on February-22-2020
0

how to change 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"
Posted by: Guest on October-30-2020

C# Answers by Framework

Browse Popular Code Answers by Language