xxxxxxxxxx
35
let bubbles = [];
let coloring = false;
function setup() {
createCanvas(600, 600);
}
function mousePressed(){
coloring = false;
for(let bubble of bubbles) {
if(bubble.clicked()){
coloring = true;
}
}
if(coloring == false){
let r = random(40, 100);
let b = new Bubble(mouseX, mouseY, r);
bubbles.push(b);
}
}
function draw() {
background(0);
/*
for(let i = 0; i < bubbles.length; i++){
bubbles[i].move();
bubbles[i].show();
}
*/
//para cada bubble dentro de bubbles
for(let bubble of bubbles){
bubble.move();
bubble.show();
}
}