sprunk-engine
    Preparing search index...

    GamepadDevice class represents a gamepad device connected to the browser. It provides events for button down, button up and axis change. It also polls the gamepad state and emits the events accordingly.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    gamepad: Gamepad
    onAnyChange: Event<void> = ...

    onAnyButtonPress is an event that is triggered when any device button is pressed. Add observers and emit the event.

    onAxisChange: Event<{ index: number; value: Vector2 }> = ...

    Event emitted when any axis is changed with the index of the axis and the value of the axis.

    onButtonDown: Event<number> = ...

    Event emitted when any button is pressed down with the index of the button.

    onButtonUp: Event<number> = ...

    Event emitted when any button is released with the index of the button.

    DEAD_ZONE: number = 0.1

    Accessors

    Methods

    • Updates the gamepad state with fresh data and emits events for changes

      Parameters

      • freshGamepad: Gamepad

        The fresh gamepad state from GamepadManager

      Returns void