我正在使用 A-Frame、A-Frame Physics 和 Super Hands。我有一个简单的场景,我可以在其中放置一个对象(现在只是一个盒子)和一些控制器。当我在 VR 中查看这个场景时,我可以抓住盒子、移动它并调整它的大小,但我无法旋转或旋转对象。
我希望旋转与握住物体的手的旋转相匹配。所以如果我用右手抓住一个物体,然后转动那只手,物体应该旋转相同的量。
<a-scene
style="height: calc(100vh - 5rem)"
embedded
physics="debug: true; gravity: 0;"
>
<a-entity>
<a-camera></a-camera>
<a-entity
sphere-collider="objects: a-box"
super-hands
hand-controls="hand: left"
></a-entity>
<a-entity
sphere-collider="objects: a-box"
super-hands
hand-controls="hand: right"
></a-entity>
</a-entity>
<a-box
color="blue"
position="0 1.4 -1"
depth="0.1"
height="0.8"
width="1"
grabbable
stretchable
draggable
dynamic-body
>
</a-box>
</a-scene>```