how can I check if a mesh is in view of the camera?
I want to dispose it when the mesh is not in view of the camera!
thanks for help! I need help!
You can use the Mesh.isInFrustum
method for that.
You can get the planes you need to pass to this function from scene.frustumPlanes
if the scene has been rendered at least once, or from Frustum.GetPlanes(camera.getTransformationMatrix())
.
1 Like
Moved to #questions since it’s a more appropriate place.
1 Like
thanks! it actually works,but not that accurate , Is there any other way?
It should be accurate, but it’s based on the bounding box of the mesh, we don’t check all the triangles one by one (it would be far too slow to do that for every meshes on every frame).