sprunk-engine
    Preparing search index...

    XboxGamepad class represents an Xbox gamepad device. It provides named events and methods for Xbox-specific buttons and controls.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    gamepad: Gamepad
    onAButtonDown: Event<void> = ...
    onAButtonUp: Event<void> = ...
    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.

    onBackButtonDown: Event<void> = ...
    onBackButtonUp: Event<void> = ...
    onBButtonDown: Event<void> = ...
    onBButtonUp: Event<void> = ...
    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.

    onDPadDownDown: Event<void> = ...
    onDPadDownUp: Event<void> = ...
    onDPadLeftDown: Event<void> = ...
    onDPadLeftUp: Event<void> = ...
    onDPadRightDown: Event<void> = ...
    onDPadRightUp: Event<void> = ...
    onDPadUpDown: Event<void> = ...
    onDPadUpUp: Event<void> = ...
    onLeftBumperDown: Event<void> = ...
    onLeftBumperUp: Event<void> = ...
    onLeftStickButtonDown: Event<void> = ...
    onLeftStickButtonUp: Event<void> = ...
    onLeftStickChange: Event<Vector2> = ...
    onLeftTriggerChange: Event<number> = ...
    onRightBumperDown: Event<void> = ...
    onRightBumperUp: Event<void> = ...
    onRightStickButtonDown: Event<void> = ...
    onRightStickButtonUp: Event<void> = ...
    onRightStickChange: Event<Vector2> = ...
    onRightTriggerChange: Event<number> = ...
    onStartButtonDown: Event<void> = ...
    onStartButtonUp: Event<void> = ...
    onXboxButtonDown: Event<void> = ...
    onXboxButtonUp: Event<void> = ...
    onXButtonDown: Event<void> = ...
    onXButtonUp: Event<void> = ...
    onYButtonDown: Event<void> = ...
    onYButtonUp: Event<void> = ...
    BUTTON_A: 0
    BUTTON_B: 1
    BUTTON_BACK: 8
    BUTTON_DPAD_DOWN: 13
    BUTTON_DPAD_LEFT: 14
    BUTTON_DPAD_RIGHT: 15
    BUTTON_DPAD_UP: 12
    BUTTON_LB: 4
    BUTTON_LEFT_STICK: 10
    BUTTON_LT: 6
    BUTTON_RB: 5
    BUTTON_RIGHT_STICK: 11
    BUTTON_RT: 7
    BUTTON_START: 9
    BUTTON_X: 2
    BUTTON_XBOX: 16
    BUTTON_Y: 3
    DEAD_ZONE: number = 0.1

    Accessors

    Methods