소스 검색

Fixed ortho interactive example window resize.

Mr.doob 11 년 전
부모
커밋
1f8b7176e1
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5 1
      examples/webgl_interactive_cubes_ortho.html

+ 5 - 1
examples/webgl_interactive_cubes_ortho.html

@@ -96,7 +96,11 @@
 
 			function onWindowResize() {
 
-				camera.aspect = window.innerWidth / window.innerHeight;
+				camera.left = window.innerWidth / - 2;
+				camera.right = window.innerWidth / 2;
+				camera.top = window.innerHeight / 2;
+				camera.bottom = window.innerHeight / - 2;
+
 				camera.updateProjectionMatrix();
 
 				renderer.setSize( window.innerWidth, window.innerHeight );