diff --git a/examples/webgl_modifier_edgesplit.html b/examples/webgl_modifier_edgesplit.html index 0d50b08c87ecd9..edc853dd4b1ef7 100644 --- a/examples/webgl_modifier_edgesplit.html +++ b/examples/webgl_modifier_edgesplit.html @@ -116,7 +116,7 @@ } ); - const gui = new GUI( { name: 'Edge split modifier parameters' } ); + const gui = new GUI( { title: 'Edge split modifier parameters' } ); gui.add( params, 'showMap' ).onFinishChange( updateMesh ); gui.add( params, 'smoothShading' ).onFinishChange( updateMesh ); diff --git a/examples/webgl_morphtargets_face.html b/examples/webgl_morphtargets_face.html index 5c93102f640539..b83580f9d040b8 100644 --- a/examples/webgl_morphtargets_face.html +++ b/examples/webgl_morphtargets_face.html @@ -95,7 +95,7 @@ gui.add( influences, value, 0, 1, 0.01 ) .name( key.replace( 'blendShape1.', '' ) ) - .listen( influences ); + .listen(); }