Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface StateConfig<Game>

Interface describing a State Configuration object

Type parameters

  • Game: Game2D | Game

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

Hierarchy

  • StateConfig

Index

Properties

Methods

Properties

name: string

A name for the State

Methods

  • end(game: Game): void
  • optional end lifecycle method for the State; called when the State is switched away from

    Parameters

    • game: Game

    Returns void

  • init(game: Game): void
  • optional init lifecycle method for the State; called when the State is switched to

    Parameters

    • game: Game

    Returns void

  • tick(game: Game, frameDelta: number): void
  • tick lifecycle method for the State; called once per frame as an update routine

    Parameters

    • game: Game
    • frameDelta: number

    Returns void