Hello, I have 6 walls that create a cube. When I go too far with the camera (scrolling with the mouse through the OrbitControls) parts of walls in the back disappear:
Hi Mugen87, I tried changing the far value but the wall still disappears. But as you said it’s something about the camera because the more far is the distance the more the walls disappear.
Why are the dimension of your scene so huge? Can you try to use a more real world scale? Let’s say the walls have a width and height of e.g. 2 world units (which is essentially 2 meters).
If you need this extreme scales for some reasons, consider to create your renderer like so:
var renderer = new THREE.WebGLRenderer( { logarithmicDepthBuffer: true } );
Check the documentation of WebGLRenderer for more information about this parameter.