diff --git a/src/GraphicsSystem/Camera.ts b/src/GraphicsSystem/Camera.ts index af3f0ea11..dffb53d07 100644 --- a/src/GraphicsSystem/Camera.ts +++ b/src/GraphicsSystem/Camera.ts @@ -22,7 +22,7 @@ export class Camera this.m_ParentViewer = view; this.m_CameraArray.set(THREE.OrthographicCamera, new THREE.OrthographicCamera(-2, 2, 2, -2, - -1000, 1000)); + -10000, 10000)); this.m_CameraArray.set(THREE.PerspectiveCamera, new THREE.PerspectiveCamera(50, view.getAspectRatio(), 0.1, 10000));