Solved
This topic has been closed for replies.
Hi,
If you're debugging while trying to get both a click and a drag event you may run into some issues because you're releasing your mouse when you hit the first breakpoint.
The first event you'll get is a Click Event (PRESSED) then continuous drag events every tick with the delta for x and y, and then finally a Click Event (RELEASED) when releasing.
You could try printing things into the console rather than using breakpoints. You're doing it right, just overriding handleClick- and -Drag event methods.
/Martin
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.