Options
All
  • Public
  • Public/Protected
  • All
Menu

Class InputManager

Core InputManager; utilised by the Game to defer the detection and management of user input

Hierarchy

  • InputManager

Index

Constructors

  • Constructor. Initialise event handlers as appropriate based on the controlScheme

    Parameters

    • canvas: HTMLCanvasElement

      the HTML Canvas to register events upon

    • controlScheme: ControlScheme

      the ControlScheme given to the Game's Config, used for optimising event registration and handling

    Returns InputManager

Properties

clickPos: Vec2 = ...

Position of last user click

contextClickPos: Vec2 = ...

Position of last user context click

controlScheme: ControlScheme
dblClickPos: Vec2 = ...

Position of last user double click

mousePos: Vec2 = ...

Current position of the mouse within the window

Methods

  • destroy(): void
  • Tear down event handlers; called as part of Game destroy()

    Returns void

  • isKeyDown(code: Keys): boolean
  • Check if a given Key code is currently pressed by checking its presence within the keyBuffer

    Parameters

    • code: Keys

      the Key code to check

    Returns boolean

    a boolean indicating whether or not the key is pressed

  • isMouseDown(): boolean
  • Check if the mouse is down

    Returns boolean

    a boolean indicating whether or not the mouse is pressed