Code: Select all
bool defaultPickingHandler(EventArgs& e)
Since the function is only called when a MouseButtonUp event was fired, I tried to get a pointer or a reference to MouseEventArgs, but as the parameter is a EventArgs&, no type conversion is possible. How can I obtain the correct MouseEventArgs in my handler function?