Lower particle TOL

This commit is contained in:
Cooper Ransom 2024-03-01 17:20:29 -05:00
parent f8b3b68570
commit 4ec3324319
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class Particle {
this.direction = (Math.random() * Math.PI) / 2 + Math.PI / 4; this.direction = (Math.random() * Math.PI) / 2 + Math.PI / 4;
this.speed = 0.02 + Math.random() * 0.085; this.speed = 0.02 + Math.random() * 0.085;
const second = 75; const second = 65;
this.lifetime = second * 3 + Math.random() * (second * 30); this.lifetime = second * 3 + Math.random() * (second * 30);
this.size = this.options.sizeRange this.size = this.options.sizeRange