So since unity 5, i have been having problems changing the Ui text in a script. I want to keep an score, but what i used to do doesn’t work anymore. I tried searching throw answers and stuff, but i haven’t found anything that helped me. Can someone tell me how to change ui text in a script? I am using Javascript.
i don’t use Javascript but i think you will get the idea
int Score = 1;
public Text mytext; //attach the UI text to this script.
void Start ()
{
mytext.text = "Score: "+Score;
}