Options
All
  • Public
  • Public/Protected
  • All
Menu

Class System

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

Systems for 3D Games should extend from this class, which will provide a type-correct 3D Game in its tick method

Hierarchy

Index

Constructors

Properties

Methods

Constructors

  • new System(name: string): System
  • Constructor. Take a name for the System

    Parameters

    • name: string

      the name of the System

    Returns System

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