Skip to content

Commit

Permalink
set down bloom strength
Browse files Browse the repository at this point in the history
  • Loading branch information
tranhogdiep committed Aug 1, 2024
1 parent 6e22625 commit a0cd0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/THREESingleton.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export function Init() {
_composer = new EffectComposer(_renderer);
_renderPass = new RenderPass(_scene, _camera);

_bloomPass = new UnrealBloomPass(new THREE.Vector2(window.innerWidth, window.innerHeight), 0.3, 0.4, 0.95);
_bloomPass = new UnrealBloomPass(new THREE.Vector2(window.innerWidth, window.innerHeight), 0.2, 0.3, 0.9);

_outlinePass = new OutlinePass(new THREE.Vector2(window.innerWidth, window.innerHeight), _scene, _camera);
_outlinePass.hiddenEdgeColor.set('#1aff47');
Expand Down

0 comments on commit a0cd0cc

Please sign in to comment.