The Timer class is responsible for time management. It is a singleton and should not be instantiated manually. Access it via Laya.timer

Timer 是时钟管理类。它是一个单例,不要手动实例化此类,应该通过 Laya.timer 访问。

构造函数

属性

currFrame: number = 0

The current frame count.

当前的帧数。

currTimer: number

The start time of the current frame.

当前帧的开始时间。

delta: number = 0

The time interval between two frames, in milliseconds.

两帧之间的时间间隔,单位毫秒。

scale: number = 1

Scale of the clock hand.

时针的缩放比例。

unscaledDelta: number = 0

The unscaled time interval between two frames, in milliseconds.

两帧之间的时间间隔(不受 scale 影响),单位毫秒。

访问器

方法

  • 参数

    • caller: any

      The scope of the object (this).

    • method: Function

      The timer callback function.

    • 可选args: any[]

      The callback arguments.

    返回 void

    Delays the execution.

    延迟执行。

  • 参数

    • caller: any

      The scope of the object (this).

    • method: Function

      Timer callback function.

    返回 void

    Cleaning the timer.

    清理定时器。

  • 参数

    • caller: any

      The scope of the object (this).

    返回 void

    Clears all timers associated with the object.

    清理对象身上的所有定时器。

  • 参数

    • caller: any

      The scope of the object (this).

    • method: Function

      The callback function for the timer.

    返回 void

    Cancels the execution of callLater.

    取消执行 callLater。

  • 返回 void

    Destroy the timer, and clear all events on the timer.

    删除定时器,同时清理定时器上的所有事件。

  • Repeatedly executes at frame intervals.

    参数

    • delay: number

      The interval time in frames.

    • caller: any

      The scope of the object (this).

    • method: Function

      The callback function to be executed by the timer.

    • 可选args: any[]

      The arguments to pass to the callback function.

    • 可选coverBefore: boolean

      Whether to overwrite previous delayed execution, default is true.

    返回 void

    定时重复执行(基于帧率)。

  • Executes once after a delay in frames.

    参数

    • delay: number

      The delay time in frames.

    • caller: any

      The scope of the object (this).

    • method: Function

      The callback function to be executed by the timer.

    • 可选args: any[]

      The arguments to pass to the callback function.

    • 可选coverBefore: boolean

      Whether to overwrite previous delayed execution, default is true.

    返回 void

    定时执行一次(基于帧率)。

  • Repeatedly executes at intervals.

    参数

    • delay: number

      The interval time in milliseconds.

    • caller: any

      The scope of the object (this).

    • method: Function

      The callback function to be executed by the timer.

    • 可选args: any[]

      The arguments to pass to the callback function.

    • 可选coverBefore: boolean

      Whether to overwrite previous delayed execution, default is true.

    • 可选jumpFrame: boolean

      Whether 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.

    返回 void

    定时重复执行。

  • Executes once after a delay.

    参数

    • delay: number

      The delay time in milliseconds.

    • caller: any

      The scope of the object (this).

    • method: Function

      The callback function to be executed by the timer.

    • 可选args: any[]

      The arguments to pass to the callback function.

    • 可选coverBefore: boolean

      Whether to overwrite previous delayed execution, default is true.

    返回 void

    定时执行一次。

  • 参数

    • caller: any

      The scope of the object (this).

    • method: Function

      The callback function for the timer.

    • 可选forceRun: boolean

      Whether to force execution, regardless of whether there is a registered CallLater.

    返回 void

    Immediately executes the callLater.

    立即执行 callLater。

  • 参数

    • caller: any

      The scope of the object (this).

    • method: Function

      Timer callback function.

    返回 boolean

    Whether the call was successful.

    Immediately advance the timer, execute it, and then remove it from the queue.

    立即提前执行定时器,执行后从队列中删除。