Repeatedly executes at frame intervals.
The interval time in frames.
The scope of the object (this).
The callback function to be executed by the timer.
可选
args: any[]The arguments to pass to the callback function.
可选
coverBefore: booleanWhether to overwrite previous delayed execution, default is true.
Executes once after a delay in frames.
The delay time in frames.
The scope of the object (this).
The callback function to be executed by the timer.
可选
args: any[]The arguments to pass to the callback function.
可选
coverBefore: booleanWhether to overwrite previous delayed execution, default is true.
Repeatedly executes at intervals.
The interval time in milliseconds.
The scope of the object (this).
The callback function to be executed by the timer.
可选
args: any[]The arguments to pass to the callback function.
可选
coverBefore: booleanWhether to overwrite previous delayed execution, default is true.
可选
jumpFrame: booleanWhether to jump frames. For time-based callbacks, if multiple callbacks can be executed within a given time interval, the engine defaults to executing once for performance reasons. Setting jumpFrame
to true will allow multiple executions in quick succession.
Executes once after a delay.
The delay time in milliseconds.
The scope of the object (this).
The callback function to be executed by the timer.
可选
args: any[]The arguments to pass to the callback function.
可选
coverBefore: booleanWhether to overwrite previous delayed execution, default is true.
En
The
Timer
class is responsible for time management. It is a singleton and should not be instantiated manually. Access it viaLaya.timer
Zh
Timer 是时钟管理类。它是一个单例,不要手动实例化此类,应该通过 Laya.timer 访问。