🖲 Distance the mouse has moved since the last frame in the vertical direction.
q5.draw = function () { background(0.8); if (movedY > 0) text('vv', 0, 0); if (movedY < 0) text('^^', 0, 0);}; Copy
q5.draw = function () { background(0.8); if (movedY > 0) text('vv', 0, 0); if (movedY < 0) text('^^', 0, 0);};
🖲 Distance the mouse has moved since the last frame in the vertical direction.