Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface GameConfig

Interface describing the 3D Game Configuration object, with configuration relevant to 3D Games

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

states?: State[]

3D State configuration

text?: Omit<TextConfig, "renderer">

3D Text configuration; defaults to the built-in font + charset

ui?: Omit<UIConfig, "renderer">

3D UI configuration

world?: { camera?: Partial<Omit<CameraConfig, "name">>; dimensions?: Vec3; textureAtlas?: TextureAtlas }

3D World configuration

Type declaration

Methods

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

    Returns void