I’m trying to use mouse input but having trouble finding documentation. A big help would be to announce where-the-heck is documentation about some things like button info.
For example, how do I identify the button parameter in functions like mousePressed() to resolve left versus right button presses?
mousePressed(...)void ofBaseApp::mousePressed(int x, int y, int button)
This function gets called when the mouse is pushed down. The button (left 0, center 1, right 2) is passed in, along with the x and y coordinate.