Countdown Timer?
dustingriffie
Member Posts: 57
Hi, I am looking to make a countdown timer that does not only do seconds, but differentiates seconds to minutes (i.e. instead of 180 seconds it would be 3 minutes.) Thanks!
Comments
Here is the hrs:mins:secs as you want:
floor(( game.TotalTimeSpinning )/3600)..":"..floor(floor((( game.TotalTimeSpinning )%3600)/60)/10)..floor((floor(( game.TotalTimeSpinning )%3600)/60)%10)..":"..floor((( game.TotalTimeSpinning )%60)/10)..floor(( game.TotalTimeSpinning )%10)
Original source:-
http://forums.gamesalad.com/discussion/63733/displaying-game-time-in-hrs-min-sec
Do you just put that into a Display Text Attribute?
Yes. Try and see.