Skip to content

Commit

Permalink
Fix incorrect args
Browse files Browse the repository at this point in the history
  • Loading branch information
WestLangley committed Aug 22, 2024
1 parent c562b90 commit 812af4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/webgl_postprocessing_advanced.html
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@

effectSepia.uniforms[ 'amount' ].value = 0.9;

effectVignette.uniforms[ 'offset' ].value = 0.95;
effectVignette.uniforms[ 'darkness' ].value = 1.6;
effectVignette.uniforms[ 'offset' ].value = 1.6;
effectVignette.uniforms[ 'darkness' ].value = 0.95;

const effectBloom = new BloomPass( 0.5 );
const effectFilm = new FilmPass( 0.35 );
Expand Down

0 comments on commit 812af4b

Please sign in to comment.