Hello everyone, I'm new with Unity and I have some problem. How to make timer that will start to count when I enter in game and display that on screen. And how to make counter that will count how many coins I collect and display it on screen.
The timer question has been answered here
As for the counter, you just use a similar text label like stated in the link, you just display an integer variable for the number of your collected coins. You might wanna convert that integer to a string first --> variable.ToString() (ToString example in forum thread)