无法使用 Oculus Quest 2 在 A-Frame 中移动相机

Can't move camera in A-Frame with Oculus Quest 2

是否可以使用 Oculus 触摸控制器在 A 型框架项目中移动相机?

找不到任何工作示例。

您可以尝试 re-use 现有组件。 wasd-controls are working well for movement, so You can write a similar component utilizing the thumbstick input 而不是 wasd 键。


你可以试试我的野蛮尝试here(docs).
这很简单 - 为控制器 + 相机创建一个 rig 并将 oculus-thumbstick-controls 附加到任何控制器:

<script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>
<script src="https://gftruj.github.io/webzamples/aframe/controls/oculus-thumbstick-controls.js"></script>
<a-scene>
  <!-- Camera + controllers rig -->
  <a-entity id="rig">
    <a-camera position="0 1.6 0"></a-camera>
    <a-entity oculus-touch-controls="hand: left" ></a-entity>
    <a-entity oculus-touch-controls="hand: right" oculus-thumbstick-controls></a-entity>
  </a-entity>
</a-scene>