Skip to content

Commit

Permalink
Update pipe.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuv6vvyv authored Feb 9, 2025
1 parent 792f5f2 commit 611be88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipe.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
renderer.setSize(window.innerWidth, window.innerHeight);

// Lighting.
const ambientLight = new THREE.AmbientLight(0xffffff, 0.6);
const ambientLight = new THREE.AmbientLight(0xffffff, 0.8);
scene.add(ambientLight);
const directionalLight1 = new THREE.DirectionalLight(0xffffff, 1);
directionalLight1.position.set(1, 1, 1);
Expand All @@ -138,7 +138,7 @@
let pipes = [];

// Constants to limit complexity.
const MAX_PIPE_COUNT = 4000; // Maximum count of fully grown pipes.
const MAX_PIPE_COUNT = 2500; // Maximum count of fully grown pipes.
const PIPE_LIFECYCLE = 300000; // 5 minutes.

// PipeSegment class.
Expand Down

0 comments on commit 611be88

Please sign in to comment.