Answers for "how to change the color of a character in unity"

C#
18

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
7

new color unity

Color color = new Color(red,green,blue,alpha)//Alpha 0 is transparent
Posted by: Guest on November-14-2020

Code answers related to "how to change the color of a character in unity"

C# Answers by Framework

Browse Popular Code Answers by Language