Преглед на файлове

Cleanup onWindowResize for procedural postprocessing example (#26434)

Nathan Bierema преди 2 години
родител
ревизия
b21c398908
променени са 1 файла, в които са добавени 1 реда и са изтрити 7 реда
  1. 1 7
      examples/webgl_postprocessing_procedural.html

+ 1 - 7
examples/webgl_postprocessing_procedural.html

@@ -130,13 +130,7 @@
 
 			function onWindowResize() {
 
-				const width = window.innerWidth;
-				const height = window.innerHeight;
-
-				postCamera.aspect = width / height;
-				postCamera.updateProjectionMatrix();
-
-				renderer.setSize( width, height );
+				renderer.setSize( window.innerWidth, window.innerHeight );
 
 			}
 

粤ICP备19079148号