mousePressed(button);
EventCalled when a mouse button is pressed.
Arguments
button
The pressed mouse button
In the following example, the circle's size increases when the user clicks the mouse.
size = 0;
function setup()
createWindow(400, 400);
end
function draw()
background(51);
circle(mouseX, mouseY, size);
end
-- Increase circle size when mouse pressed
function mousePressed()
size = size + 1;
end