Skip to content

Commit

Permalink
Cleanup examples (#27050)
Browse files Browse the repository at this point in the history
* Cleanup examples

See #26421 for explanation.

* Update webgl_morphtargets_face.html
  • Loading branch information
Methuselah96 committed Oct 25, 2023
1 parent 4fc9ce7 commit df8e0f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/webgl_modifier_edgesplit.html
Original file line number Diff line number Diff line change
Expand Up @@ -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 );
Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_morphtargets_face.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@

gui.add( influences, value, 0, 1, 0.01 )
.name( key.replace( 'blendShape1.', '' ) )
.listen( influences );
.listen();

}

Expand Down

0 comments on commit df8e0f3

Please sign in to comment.