Calsign / APDE

Source code for APDE: Create and run Processing sketches on an Android device.
GNU General Public License v2.0
338 stars 76 forks source link

event.getCount() getCount() is undefined for event #122

Open loboere opened 2 years ago

loboere commented 2 years ago

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?