How to display information onscreen with GUI Text components and display a counting variable.
Code Used (Javascript)
var Counter : int = 0;
-
-
function Update () {
-
Counter++;
-
guiText.text = "Counter is: "+Counter;
-
}
How to display information onscreen with GUI Text components and display a counting variable.