hey there I am working with Threejs and I want to develop an online virtual tour. So I loaded some 3d objects as Booths and a camera with a PointerlockControl and everything works fine but the problem is that the camera will pass through the objects and I think that is not good.is there any way to avoid this issue ?
So the problem is that the camera is sometimes inside an object and you can see this object from inside (which doesn't look good)? If so, there are two basic solutions:
Material.side = THREE.FrontSide
, so the camera will be still able to go inside an object, but this object will be not visible from inside (if that's your problem).