menu

GamepadConnection

import { GamepadConnection } from "destack:input/binding";

Gamepad connection kind.

language/library/src/input/binding/gamepad.ds:16:25
1export enum GamepadConnection {2    Unknown = 0,3    Wired = 1,4    Wireless = 2,5    Virtual = 3,6}

Variants

Unknown = 0

Host did not classify the connection.

Wired = 1

Wired transport.

Wireless = 2

Wireless transport.

Virtual = 3

Virtual or emulated transport.