Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GameConfigBase

Interface describing the generic Game Configuration object, with configuration relevant both to 2D and 3D games

All configuration is optional; default values will be provided if unprovided

Hierarchy

Index

Properties

backgroundColor?: Color

Background Color for the Game; default value is black

canvasDimensions?: Vec2

Dimensions of the Canvas; default value is (window.innerWidth, window.innerHeight)

canvasId?: string

ID of the Canvas; a Canvas will be created if not provided

canvasParent?: string | HTMLElement

ID or HTMLElement of the container to place an automatically-created Canvas within

controlScheme?: ControlScheme

Game Control Scheme; default value is 'keyboard'

debugMode?: boolean

Debug Mode, enabling game stat display; default value is false

hideCursor?: boolean

Whether or not to hide the cursor on the game canvas

shaders?: ShaderProgram[]

Shaders to register on init; overrides the default set if provided

sounds?: { filePath: string; name: string }[]

Sounds to load on game init

Methods

  • init(): void
  • Game init function; none is provided by default

    Returns void