KeyboardDevice provides an interface for subscribing to keyboard events and running callbacks when those events happen.

Constructors

Methods

  • Reset the keyboard (e.g., between levels)

    Returns void

  • Set a handler to respond to some keydown event

    Parameters

    • key: KeyCodes

      The key to listen for

    • handler: (() => void)

      The code to run

        • (): void
        • Returns void

    Returns void

  • Set a handler to respond to some keyup event

    Parameters

    • key: KeyCodes

      The key to listen for

    • handler: (() => void)

      The code to run

        • (): void
        • Returns void

    Returns void