Hello,
I need to create a timer that will go at the beginning of the level, that countdowns from 3 so the player knows when to start the game (eg. 3..2..1..GO!). During this time, the player should not be able to move.
countdown to start level?
I need to create a timer that will go at the beginning of the level, that countdowns from 3 so the player knows when to start the game (eg. 3..2..1..GO!). During this time, the player should not be able to move.
Code (CSharp):
- using UnityEngine;
- using System.Collections;
- using System.IO;
- using System;
- using System.Threading;
- static bool startGame=false;
- startGame = true;
- if (startGame == true)...