q5play
    Preparing search index...

    Variable movedY

    movedY: number

    🖲 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);
    };