Skip to content

Commit

Permalink
More fixes in envmaps_ examples.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Jan 30, 2019
1 parent 17794d2 commit a7bd554
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/webgl_materials_envmaps_exr.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@
gui.add( params, 'envMap', [ 'EXR', 'PNG' ] );
gui.add( params, 'roughness', 0, 1, 0.01 );
gui.add( params, 'metalness', 0, 1, 0.01 );
gui.add( params, 'exposure', 0, 2 );
gui.add( params, 'exposure', 0, 2, 0.01 );
gui.add( params, 'debug', false );
gui.open();

Expand Down
2 changes: 1 addition & 1 deletion examples/webgl_materials_envmaps_hdr.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@
gui.add( params, 'envMap', [ 'LDR', 'HDR', 'RGBM16' ] );
gui.add( params, 'roughness', 0, 1, 0.01 );
gui.add( params, 'metalness', 0, 1, 0.01 );
gui.add( params, 'exposure', 0, 2 );
gui.add( params, 'exposure', 0, 2, 0.01 );
gui.add( params, 'debug', false );
gui.open();

Expand Down

0 comments on commit a7bd554

Please sign in to comment.