APDE
APDE copied to clipboard
event.getCount() getCount() is undefined for event
I am trying to get the state of the mouse wheel with event.getCount() but there seems to be no such function.
code for mouse
void mouseWheel(MouseEvent event) {
text(event.getCount(),6,60);
}
How can I get the state of the mouse wheel?