0

我在https://www.ibiblio.org/e-notes/webxr/mini.htm的 WebXR 分子查看器(纯 JavaScript + WebGL + WebXR)中使用 Oculus Go 控件(触摸板 + 触发器) 。要从 Go 迁移到 Quest,我想知道,Quest 上的“selectend 事件”和“xrSession.inputSources[0].gamepad.axes[0/1]”对应于什么?

4

1 回答 1

0

在 Quest 拇指杆上暴露为

xrSession.inputSources[0/1].gamepad.axes[touchpad X, touchpad Y, thumbstick X, thumbstick Y]

其中 0/1 对应于右手/左手。因此axes[2,3]应该使用(而不是axes[0,1]在 Go 中)来获取 X,Y 坐标。

参见例如https://www.ibiblio.org/e-notes/webxr/mini/micro3q.htm

于 2020-09-20T15:57:40.150 回答