T
1
hi
i want to have a really simple timer that runs while the user plays the game, i need to be able to reset the timer alot and possibly have two running, is there any way to do this?
Jake-L
2
Use Time.time to make a timer:
var startTime;
var elapsedTime;
startTime=Time.time;
// let your game run....
elapsedTime=Time.time-startTime;
Jake
system
3
That's cool, but I still can't understand, after I opened a Javascript document, to make the clock appear on my screen! Please could you help me?