Hello i cannot make the background color change when I click with the mouse anywhere, I would like to change the background when clicking on the buttons, but anywhere in the screen if fine. I'm using P5
Do you mean like this?
Click "Run Code Snippet" to view result.
function draw() {
background(220);
ellipse(50,50,80,80);
if (mouseIsPressed) {
fill(225,142,150);
} else {
fill(255);
}
}
function setup() {
createCanvas(400, 400);
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.min.js"></script>