瀏覽代碼

Examples: Clean up. (#27961)

Michael Herzog 1 年之前
父節點
當前提交
a49dde2691
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      examples/misc_controls_transform.html

+ 4 - 2
examples/misc_controls_transform.html

@@ -47,8 +47,10 @@
 
 				const aspect = window.innerWidth / window.innerHeight;
 
-				cameraPersp = new THREE.PerspectiveCamera( 50, aspect, 0.01, 30000 );
-				cameraOrtho = new THREE.OrthographicCamera( - 600 * aspect, 600 * aspect, 600, - 600, 0.01, 30000 );
+				const frustumSize = 5;
+
+				cameraPersp = new THREE.PerspectiveCamera( 50, aspect, 0.1, 100 );
+				cameraOrtho = new THREE.OrthographicCamera( - frustumSize * aspect, frustumSize * aspect, frustumSize, - frustumSize, 0.1, 100 );
 				currentCamera = cameraPersp;
 
 				currentCamera.position.set( 5, 2.5, 5 );