Hi!
I am a bit new to unity and I have a stopwatch added to my game based on @freezing_ example. The Issue I’m having is when the game is finished and I have it show the time, The “Your Time” bit will show but the actual time will not.
Here is where I’m having the issue.
void SetCountText ()
{
countText.text = "Count: " + count.ToString ();
if (count >= 12)
{
winText.text = "You Win!";
timer.Stop ();
finishTime.text = "Your Time: " + timer.ToString ();
}
}
Thanks for your help!
,