From 63781515b0db2a371759db74f8fd65fdaaeb5d50 Mon Sep 17 00:00:00 2001 From: ChenX Date: Fri, 27 Oct 2017 11:57:21 +0800 Subject: [PATCH] =?UTF-8?q?=E7=9B=B8=E6=9C=BA=E8=8C=83=E5=9B=B4=E5=8A=A0?= =?UTF-8?q?=E5=A4=A7.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/GraphicsSystem/Camera.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));