xxxxxxxxxx
26
class Particle {
constructor(x, y) {
this.x = x;
this.y = y;
this.vx = random(-2, 2);
this.vy = random(-5, -1);
this.alpha = 255;
}
show() {
//stroke(255);
noStroke();
fill(255, this.alpha);
ellipse(this.x, this.y, 16);
}
update() {
this.x += this.vx;
this.y += this.vy;
this.alpha -= 5;
}
toDelete() {
return this.alpha <= 0;
}
}