Options
All
  • Public
  • Public/Protected
  • All
Menu

Concrete 2D State, ensuring the appropriate 2D Game type is provided in State lifecycle methods for Aura2D States

State implementations in 2D Games should construct this class with a StateConfig

Hierarchy

Index

Constructors

Properties

Accessors

Methods

Constructors

  • Constructor. Take a 2D or 3D StateConfig specifying the State's name and lifecycle methods

    Parameters

    Returns State

Properties

config: StateConfig<Game>

Accessors

  • get name(): string
  • Retrieve the State's name, as provided in its StateConfig

    Returns string

    the State's name

Methods

  • end(game: Game): void
  • Generic teardown lifecycle method, calling down to the StateConfig's end() if provided

    Called by the Game when the State is switched away from

    Parameters

    • game: Game

      the 2D or 3D Game the State is operating within

    Returns void

  • init(game: Game): void
  • Generic initialisation lifecycle method, calling down to the StateConfig's init() if provided

    Called by the Game when the State is switched to

    Parameters

    • game: Game

      the 2D or 3D Game the State is operating within

    Returns void

  • tick(game: Game, frameDelta: number): void
  • Generic frame update lifecycle method, calling down to the StateConfig's tick()

    Called by the Game during frame update when the State is active

    Parameters

    • game: Game

      the 2D or 3D Game the State is operating within

    • frameDelta: number

      the frame delta as calculated by the Game

    Returns void