GamepadSettings 特定配置设置。
属性列表
可以设置、检索或监听的属性。参见 使用属性。
属性 | 类型 | 描述 | 类 | |
---|---|---|---|---|
String | 更多信息 类名。 | 更多信息 | Accessor | |
Collection<GamepadInputDevice> | 更多信息 检测到的所有游戏手柄的只读集合。 | 更多信息 | GamepadSettings | |
String | 更多信息 确定分发游戏手柄事件所需的焦点。 | 更多信息 | GamepadSettings |
属性详细说明
-
类名。类的名称声明格式为
geoscene.folder.className
。
-
devices Collection<GamepadInputDevice>readonly
-
检测到的所有游戏手柄的只读集合。 可以监视此集合以连接和断开 gamepad。 此属性只能在与连接的 gamepad 设备交互后填充。 请参见下面的示例。
示例代码:const { devices } = view.input.gamepad; devices.on("change", () => { console.log(`Available devices...`); for (const gamepad of devices) { const { id, index } = gamepad.native; console.log(` Device name: ${id} Device index: ${index} `); } });