Timer
Timers are used to wait for a number of milliseconds before calling a function. Timers can run once or repeat until stopped.
Script
Timer Start
• Bắt đầu một bộ đếm thời gian mới. Chức năng này trả về một giá trị chỉ số.
TimerStart(Milliseconds:Number,Tick:Function,LặpLại:Boolean);
|
TimerStart(5000,OnTick,false);
function OnTick(){
alert("5 seconds have passed.");
}
Timer Stop
• Stop a timer. Use the index value returned by the 'Timer Start' function.
TimerStop(Index:Number);
|
var MyTimer=TimerStart(1000,TimerTicked,true);
function TimerTicked(){
}
...
TimerStop(MyTimer);
When making games, a more efficient method of waiting is to use the 'On Update' event and check the date object to see how much time has passed.