how to get text color alpha unity code example
Example: how to get text color alpha unity
public Text healthtext;
healthtext.text = healthpack.ToString();
Color zm = healthtext.color;
zm.a = 0.0f;
public Text healthtext;
healthtext.text = healthpack.ToString();
Color zm = healthtext.color;
zm.a = 0.0f;