I have a little issue related to the events MOUSE_MOVE
and TransformGestureEvent.GESTURE_ZOOM
.
I want to distinguish both events, when I'm zooming an object MOUSE_MOVE
should not act.
In the functions of both events, I start indicating event.stopPropagation();
but no success, so if I press with one finger and move, the MOUSE_MOVE
Event should work, but when I press with two fingers, MOUSE_MOVE
should not work.
Is there any way that when i could prevent MOUSE_MOVE Event act when I'm Zooming the object?