mouseY
GlobalThe y mouse coordinate
createWindow(400, 400);
function draw()
background(51);
line(0, mouseY, width, mouseY);
end
mouseY
GlobalThe y mouse coordinate
createWindow(400, 400);
function draw()
background(51);
line(0, mouseY, width, mouseY);
end