xxxxxxxxxx
function setup() {
createCanvas(windowWidth, windowHeight);
background(0);
}
function draw() {
if(mouseIsPressed) {
fill(176, random(150,235), 93, 85);
ellipse(mouseX, mouseY, 20, 20);
fill(34, 255, 73, 75);
ellipse(mouseX+(random(5,20)), mouseY, 10, 10);
fill(34, random(255), 73, 75);
ellipse(mouseX, mouseY+(random(5,20)), 10, 10);
fill(150, random(255), 25, 95);
ellipse(mouseX-(random(5,20)), mouseY, 10, 10);
fill(200, random(255), 50, 95);
ellipse(mouseX, mouseY-(random(5,20)), 10, 10);
fill(200, random(255), 125, 95);
blendMode(ADD);
}
}