xxxxxxxxxx
28
function setup() {
createCanvas(500, 500);
frameRate(10)
}
function draw() {
background(100);
if (!mouseIsPressed) {
for (let y=0; y<=500; y+=10) {
for(let x=0; x<=500; x+=10) {
noStroke()
fill(random(255),random(255),random(255),70)
rect(x,y,50,50)
}
}
}
else {
for (let y=0; y<=500; y+=10) {
for(let x=0; x<=500; x+=10) {
noStroke()
fill(random(50,200))
rect(x,y,10,10)
}
}
}
}