We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc5875e commit 64a1e52Copy full SHA for 64a1e52
app.html
@@ -6280,7 +6280,7 @@
6280
6281
for (let i = 0; i < 2; i++) {
6282
const gamepad = gamepads[i];
6283
- if (gamepad && gamepad.buttons[0].pressed) {
+ if (gamepad && (gamepad.buttons[0].pressed || gamepad.axes[1] <= -0.5 || gamepad.axes[3] <= -0.5)) {
6284
const controllerIndex = _getControllerIndex(gamepad);
6285
const teleportMesh = teleportMeshes[controllerIndex];
6286
0 commit comments