Skip to content

Commit

Permalink
Fix GUI title in webgl_postprocessing_afterimage (#26421)
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 authored Jul 14, 2023
1 parent 8155acd commit bc5ac6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/webgl_postprocessing_afterimage.html
Original file line number Diff line number Diff line change
Expand Up @@ -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' );

Expand Down

0 comments on commit bc5ac6c

Please sign in to comment.