A panel came up if the radius of the camera is too hight

If the radius of the camera is above 5000, you will see a panel. Where does it come from?

Camera Problem | Babylon.js Playground (babylonjs-playground.com)

Set MAX to 5000 everything is fine:

Looks like this is the camera reaching it’s max depth (camera.maxZ ?) and it stops rendering anything beyond that distance :slight_smile:

OK, then what would be the best strategy for panning a camera over a large area?

You can just increase the camera.maxZ value

2 Likes

works! Thank’s aWeirdo! :slight_smile:

camera.maxZ = MAX2;

1 Like