Timer is an abstract clock object that can execute events at some point in the future. Critically, a timer only advances when its associated scene wants it to advance. Thus we can easily pause a timer, and delay execution of all of its events, by simply failing to call advance(). It is also easy to destroy a timer and end the repetition of the events it entails, because we can do so at the granularity of the Timer, not the individual events.

Constructors

Methods

Constructors

Methods

  • Add an event to be run in the future.

    Parameters

    Returns void

  • Move time forward, and handle any events whose time is up

    Parameters

    • elapsedMs: number

      The number of milliseconds that have transpired since the last clock tick.

    Returns void