From bc5ac6c9a677496b81c3d81df1fac51a97ac2ffb Mon Sep 17 00:00:00 2001 From: Nathan Bierema Date: Fri, 14 Jul 2023 05:08:15 -0400 Subject: [PATCH] Fix GUI title in webgl_postprocessing_afterimage (#26421) --- examples/webgl_postprocessing_afterimage.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/webgl_postprocessing_afterimage.html b/examples/webgl_postprocessing_afterimage.html index b026d4ba7c5b13..a6a0ea016cf11d 100644 --- a/examples/webgl_postprocessing_afterimage.html +++ b/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' );