代码搜索结果
找到约 10,000 项符合
Timer 的代码
timer.for
c*
c* Code to handle the timer callbacks and adjust the rate as necessary
c*
subroutine InitTimer
include 'life.fi'
NeedNewTimer = .FALSE.
FastEnoughC
timer.as
_global.Timer = function(){
this.init();
}
Timer.prototype.init = function(){
this.delay = 1000; // default interval value
this.initialDelay = 0; // default initial delay (in number of ticks)
t
timer.as
//----------------------------------------
/*
@Description: 定时器.
@usage:
@example:
//
//----------------------------------------
import AS2.utils.Timer;
import AS2.utils.TimerEvent;
//--