Options
All
  • Public
  • Public/Protected
  • All
Menu

Class StateBase<Game>

Abstract State; Aura's analogous concept for a scene - a literal distinct state that a game can be in at any given time

Broken down into concrete 2D and 3D variants, providing domain-specific type safety for implementation in 2D and 3D games

States comprise an init, end and frame update method. The Game uses these in switching to, switching away from, and maintaining a State

Example States may include Menu, Game, Pause, Dead, etc

Type parameters

  • Game: Game | Game3D

    the specific 2D or 3D Game type the State will operate within

Hierarchy

Index

Constructors

Properties

Accessors

Methods

Constructors

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

    Type parameters

    Parameters

    Returns StateBase<Game>

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