Procházet zdrojové kódy

Fix GUI title in webgl_postprocessing_afterimage (#26421)

Nathan Bierema před 2 roky
rodič
revize
bc5ac6c9a6
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      examples/webgl_postprocessing_afterimage.html

+ 1 - 1
examples/webgl_postprocessing_afterimage.html

@@ -94,7 +94,7 @@
 
 			function createGUI() {
 
-				const gui = new GUI( { name: 'Damp setting' } );
+				const gui = new GUI( { title: 'Damp setting' } );
 				gui.add( afterimagePass.uniforms[ 'damp' ], 'value', 0, 1 ).step( 0.001 );
 				gui.add( params, 'enable' );