xxxxxxxxxx
34
var x = 270;
var y = 220;
var d = 50;
var state = false;
function setup() {
createCanvas(600, 400);
background(255);
}
function draw() {
if (state) {
background('#42caff');
fill('#825409');
landscape();
} else {
background(255);
fill(255);
}
rect(x, y, d, d);
}
function mousePressed() {
if (dist(mouseX, mouseY, x, y) < d/2) {
state = !state;
}
}
function landscape() {
for (let i = 0; i < width; i++) {
rect(i, 350, 100);
fill('#08992a');
}
}