3 seconds to start race

hi guys i makin a simple racing game. how to make it such a way where by it will countup for 3 seconds and start the time of the race?

1 Answer

1

A timer?

It is pretty much common knowledge but, I will help you anyway.

var countDown = 3.0; // The start value.

function Update (){
countDown -= Time.deltaTime;
//Start the game.
}

And that is the basics. You should figure the rest out yourself. Or you can use the search bar at the top right of the page.