我正在使用 PointerLockControls (完整修改的代码)开发 Three.js 项目。我想为播放器实现碰撞检测。我将通过制作一个新的 Physijs 圆柱体对象,然后将它与相机一起传递给 PointerLockControls 来解决这个问题:
var player = new Physijs.CylinderMesh( new THREE.CylinderGeometry( 2, 2, 10, 32) , playerMaterial );
player.position.set(0, 5, 0);
player.addEventListener( 'collision', handleCollision );
scene.add(player);
controls = new PointerLockControls( camera, player );
在 PointerLockControls 中,我将外部对象(偏航旋转处理程序)附加到传递的玩家对象,然后在世界中移动玩家对象。
velocity.x -= velocity.x * 10 * dt;
velocity.z -= velocity.z * 10 * dt;
velocity.y -= 9.8 * 20 * dt;
if (moveForward) velocity.z -= 180 * dt;
if (moveBackward) velocity.z += 180 * dt;
if (moveLeft) velocity.x -= 180 * dt;
if (moveRight) velocity.x += 180 * dt
player.translateX( velocity.x * dt );
player.translateY( velocity.y * dt );
player.translateZ( velocity.z * dt);
然而,在测试中,玩家对象和相机都穿过地板,或者,如果 translateY 被注释掉,当我试图移动它们时,除了在原地剧烈振动之外什么也不做。
我在哪里设置错了?在我看来,问题来自将 yawObject 附加到玩家对象然后移动它,即使是正确的方法来使用我的设置进行碰撞检测?