xxxxxxxxxx
15
function setup() {
createCanvas(400, 400);
}
function draw() {
if ((mouseIsPressed === true) && (mouseX < (width / 2))) {
// only left side turns blue when clicked
background(color(0, 0, 255));
} else {
background(color(200, 0, 0));
}
}