Options
All
  • Public
  • Public/Protected
  • All
Menu

Class SystemBase<Game>

Abstract System; a frame update utility representing a distinct functional purpose within a Game

Broken down into abstract 2D and 3D variants, allowing for domain-specific extension in type-safe Systems for Aura2D and Aura3D Games

Simple examples are found in the built-in Physics and Collision Systems; a more advanced example may be an enemy spawn management System

Type parameters

  • Game: Game2D | Game

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

Hierarchy

Index

Constructors

Properties

Methods

Constructors

  • new SystemBase<Game>(name: string): SystemBase<Game>
  • Constructor. Take a name for the System

    Type parameters

    Parameters

    • name: string

      the name of the System

    Returns SystemBase<Game>

Properties

name: string

Methods

  • tick(game: Game, frameDelta: number): void
  • Abstract update method, called once per frame while the System is active; to be type-narowed by the 2D and 3D abstract variants for parameter type safety

    Parameters

    • game: Game

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

    • frameDelta: number

      the frame delta as calculated by the Game

    Returns void