how to set a color of text in unity 2020 script
Code Example - how to set a color of text in unity 2020 script
TextVar = TextGameObject.color = Color.red;
unity change text color
// To change the color of a text, see below
GameObject.GetComponent<Text>().color = Color.black;
unity change text
// To change text of a text UI element use th combination below
textGameObject.GetComponent<UnityEngine.UI.Text>().text = "text";