xxxxxxxxxx
18
function setup() {
createCanvas(400, 400);
}
function draw() {
if ((mouseIsPressed === true) && (mouseX < (width / 2))) {
// if mouse is pressed in left hand of canvas background'll turn blue
background(color(0,0,255));
} else {
// red background
background(color(255,0, 0));
}
}