xxxxxxxxxx
21
let bubbles = [];
function setup() {
createCanvas(600, 400);
for (var j = 0; j < 1000; j++)
bubbles[j] = new Bubble(random(width), random(height));
}
function mousePressed() {
bubbles.push(new Bubble(mouseX, mouseY));
}
function draw() {
background(0);
for (var i = bubbles.length - 1; i >= 0; i--) {
bubbles[i].update();
bubbles[i].display();
if (bubbles[i].isFinished())
bubbles.splice(i, 1);
}
}