三.js - 检查物体是否仍在相机视野中



使用2D画布时,如果您想检查某些内容是否不再"在屏幕上",您只需执行以下操作:

if( pos.x > window.innerWidth || pos.x < 0 ||
    pos.y > window.innerHeight || pos.y < 0 ) {
    // has left the screen
}

我将如何检查在三.js场景中是否有东西仍然"在屏幕上"(在摄像机的视野中)?

您可以检查 3d 点是否在视锥中,而不是检查 2d 画布。

camera.updateMatrix();
camera.updateMatrixWorld();
var frustum = new THREE.Frustum();
frustum.setFromMatrix(new THREE.Matrix4().multiplyMatrices(camera.projectionMatrix, camera.matrixWorldInverse));  
// Your 3d point to check
var pos = new THREE.Vector3(x, y, z);
if (frustum.containsPoint(pos)) {
    // Do something with the position...
}
const frustum = new THREE.Frustum()
const matrix = new THREE.Matrix4().multiplyMatrices(camera.projectionMatrix, camera.matrixWorldInverse)
frustum.setFromProjectionMatrix(matrix)
if (!frustum.containsPoint(obj.position)) {
    console.log('Out of view')
}

在勾号函数中使用它,以便在 obj 超出相机视图时更新您。

注意:setFromMatrix() 在三个较新版本中更改为 setFromProjectionMatrix(.js

相关内容

  • 没有找到相关文章

最新更新