使用 2d 画布时,如果您想检查某些内容是否不再“在屏幕上”,您只需执行以下操作:
if( pos.x > window.innerWidth || pos.x < 0 ||
pos.y > window.innerHeight || pos.y < 0 ) {
// has left the screen
}
如何检查在 Three.js 场景中是否仍有某些内容“在屏幕上”(在相机视图中)?
您可以检查 3d 点是否位于截锥体中,而不是检查 2d 画布。
camera.updateMatrix();
camera.updateMatrixWorld();
var frustum = new THREE.Frustum();
frustum.setFromProjectionMatrix(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')
}
在勾选功能中使用此功能,以便当对象离开相机视图时它会更新您。
注意:在新版本的 Three.js 中,setFromMatrix() 更改为 setFromProjectionMatrix()