count down timer that counts down faster each round of a race
scitunes
Member, Sous Chef Posts: 4,047
I have made a racing type game in which you race against the clock. You need to get through the race course and complete a challenge each time. I want the timer to reset each lap (pretty sure I know how to do this) but I want the timer to count down faster (or have it set to a lower number) each lap so the game gets progressively harder.
Any thoughts on how to do this?
Thanks, guys!
Any thoughts on how to do this?
Thanks, guys!
Comments
If lapCount = 3 then timer = 15 secs
if lapCount = 4 then timer = 10 secs
etc...
It's fairly simple but it ought to work.