Skip to content

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jcponce committed Aug 6, 2024
1 parent 942843b commit 21aa70c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions threejs/string-space/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ controls.autoRotateSpeed = 0.5;
const renderScene = new RenderPass(scene, camera);
const bloomPass = new UnrealBloomPass(new THREE.Vector2(w, h), 1.5, 0.4, 100);
bloomPass.threshold = 0;
bloomPass.strength = 1.5;
bloomPass.strength = 1;
bloomPass.radius = 0;
const composer = new EffectComposer(renderer);
composer.addPass(renderScene);
Expand Down Expand Up @@ -74,7 +74,7 @@ function createWigglingLoop(segments, time, offset = 0) {
}

const numLoops = 2000; // Increase the number of loops
const radius = 45;
const radius = 50;
const minLoopSize = 0.3; // minimum loop size
const maxLoopSize = 1.3; // maximum loop size
const segments = 50;
Expand Down

0 comments on commit 21aa70c

Please sign in to comment.