I'm currently using Three.js to render a cityscape, but I'm having trouble with the camera settings. It seems that adjusting the near/far settings doesn't allow me to capture the entire scene. When I increase the far plane of the camera, the model appears blue and I can only see it clearly when zoomed in closely. Is there a way to view the whole model without being so close?
var scene = new THREE.Scene()
scene.background = new THREE.Color(33,33,33);
var ambient = new THREE.AmbientLight(0xe8ecff, 1.4)
ambient.name = 'ambientLight'
scene.add(ambient)
var directionalLight1 = new THREE.DirectionalLight(0xfff1f1, 0.7)
directionalLight1.name = 'directionalLight1'
directionalLight1.position.set(-1500, 900, 1500)
directionalLight1.castShadow = true
scene.add(directionalLight1)
// More code here
https://i.sstatic.net/6cIBf.png https://i.sstatic.net/DytSk.png