Currently I cannot find anyway to stop Middle and Right mouse button from triggering the DragDrop behaviour.
Do you know any workaround, by JS maybe? Or is it just something I'll have to build myself?
Thx in advance.
Develop games in your browser. Powerful, performant & highly capable.
This should work :
Middle mouse button
or Right mouse button is down : object disable drag drop
Left mouse button is down : object enable drag drop
What plinkie said will work...
Or you could also use...
+ Mouse: Right button is down + OR Mouse: Middle button is down -> Sprite: Drop DragDrop
I found out that these lines work best because using "is down" instead of "press" and "release" will have a couple of frames where the DragDropped object is still a little bit dragged.
Thanks for the light.