xxxxxxxxxx
59
function setup() {
let DIM = [800, 1000];
let sc = 0.8;
createCanvas(DIM[0] * sc, DIM[1] * sc);
pixelDensity(1);
background(220);
let particles = [];
let sx, sy, l;
sx = width / 2;
sy = height;
l = int(random(height * 0.75, height * 0.5));
particles.push({ x: sx, y: sy, dx: 0, dy: -1, l: l, ol: l, added:false, waiting:0 });
fill(20);
noStroke();
while (particles.length > 0) {
// let to_add = [];
for (let i = particles.length - 1; i >= 0; i--) {
let p = particles[i];
ellipse(p.x, p.y, 2, 2);
if (random() > 0.9 && p.waiting == 0) {
p.dx = random([-1, 0, 0, 0, 1]);
}
p.y += p.dy;
p.x += p.dx;
if (p.waiting == 0)
p.dx = 0;
p.l--;
if (p.waiting > 0)
p.waiting--;
if (p.l < p.ol*.75 && !p.added && random() > 0.55) {
p.added = true;
particles.push({
x: p.x,
y: p.y,
dx: random([-1,1]),
dy: -1,
l: p.ol / 2,
added:false,
waiting: int(random(p.ol/4, p.ol)),
});
}
if (random() > 0.8 & p.added)p.added = false;
if (p.l <= 0) {
ellipse(p.x, p.y, 20, 20);
particles.splice(i, 1);
}
}
}
}
function draw() {}