WestLangley 7 роки тому
батько
коміт
5262440b18
1 змінених файлів з 13 додано та 0 видалено
  1. 13 0
      examples/webgl_buffergeometry_instancing_lambert.html

+ 13 - 0
examples/webgl_buffergeometry_instancing_lambert.html

@@ -387,6 +387,19 @@
 			stats = new Stats();
 			stats = new Stats();
 			document.body.appendChild( stats.dom );
 			document.body.appendChild( stats.dom );
 
 
+			//
+
+			window.addEventListener( 'resize', onWindowResize, false );
+
+		}
+
+		function onWindowResize( event ) {
+
+			renderer.setSize( window.innerWidth, window.innerHeight );
+
+			camera.aspect = window.innerWidth / window.innerHeight;
+			camera.updateProjectionMatrix();
+
 		}
 		}
 
 
 		function animate() {
 		function animate() {