We are about to switch to a new forum software. Until then we have removed the registration on this forum.
By mouseHeld() I mean a function that is called when the mouse (or finger, on Android), is pressed continuously at one given set of coordinates, but not dragged.
I know that I could implement it by myself but the existence of such a function would save some time.
Best,
Answers
I'm afraid not. You're gonna need instead mousePressed() & mouseReleased().
Then it can be calculated how many frameCount or millis() have transpired between them.
Maybe mouseDragged() as well. So the "hold" can be abruptly cancelled if "drag" is detected.