Просмотр исходного кода

Examples: Add window resize event for webgl_geometry_extrude_shapes.html (#31324)

林炳权 8 месяцев назад
Родитель
Сommit
c13b6c4e63
1 измененных файлов с 13 добавлено и 0 удалено
  1. 13 0
      examples/webgl_geometry_extrude_shapes.html

+ 13 - 0
examples/webgl_geometry_extrude_shapes.html

@@ -177,6 +177,19 @@
 
 				scene.add( mesh3 );
 
+				//
+
+				window.addEventListener( 'resize', onWindowResize );
+
+			}
+
+			function onWindowResize() {
+
+				camera.aspect = window.innerWidth / window.innerHeight;
+				camera.updateProjectionMatrix();
+
+				renderer.setSize( window.innerWidth, window.innerHeight );
+
 			}
 
 			function animate() {

粤ICP备19079148号