Hierarchy

  • Clock
    • MockClock

Constructors

Properties

now: number

The current time of the Clock, in milliseconds.

If accessed externally, this is equivalent to the time parameter normally passed to a Scene's update method.

overrideDelay: number
paused: boolean

Whether the Clock is paused (true) or active (false).

When paused, the Clock will not update any of its Timer Events, thus freezing time.

scene: Scene

The Scene which owns this Clock.

startTime: number

The time the Clock (and Scene) started, in milliseconds.

This can be compared to the time parameter passed to a Scene's update method.

systems: Systems

The Scene Systems object of the Scene which owns this Clock.

timeScale: number

The scale of the Clock's time delta.

The time delta is the time elapsed between two consecutive frames and influences the speed of time for this Clock and anything which uses it, such as its Timer Events. Values higher than 1 increase the speed of time, while values smaller than 1 decrease it. A value of 0 freezes time and is effectively equivalent to pausing the Clock.

Methods

  • Clears and recreates the array of pending Timer Events.

    Returns this

  • Creates a Timer Event and adds it to the Clock at the start of the frame.

    This is a shortcut for #addEvent which can be shorter and is compatible with the syntax of the GreenSock Animation Platform (GSAP).

    Parameters

    • delay: number

      The delay of the function call, in milliseconds.

    • callback: Function

      The function to call after the delay expires.

    • Optional args: any[]

      The arguments to call the function with.

    • Optional callbackScope: any

      The scope (this object) to call the function with.

    Returns TimerEvent

  • Updates the arrays of active and pending Timer Events. Called at the start of the frame.

    Parameters

    • time: number

      The current time. Either a High Resolution Timer value if it comes from Request Animation Frame, or Date.now if using SetTimeout.

    • delta: number

      The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.

    Returns void

  • Schedules all active Timer Events for removal at the start of the frame.

    Returns this

  • Removes the given Timer Event, or an array of Timer Events, from this Clock.

    The events are removed from all internal lists (active, pending and removal), freeing the event up to be re-used.

    Parameters

    • events: TimerEvent | TimerEvent[]

      The Timer Event, or an array of Timer Events, to remove from this Clock.

    Returns this

  • Updates the Clock's internal time and all of its Timer Events.

    Parameters

    • time: number

      The current time. Either a High Resolution Timer value if it comes from Request Animation Frame, or Date.now if using SetTimeout.

    • delta: number

      The delta time in ms since the last frame. This is a smoothed and capped value based on the FPS rate.

    Returns void