diff --git a/src/interaction/InteractionManager.js b/src/interaction/InteractionManager.js index 6b3638e..05759d4 100644 --- a/src/interaction/InteractionManager.js +++ b/src/interaction/InteractionManager.js @@ -87,10 +87,11 @@ * This property determins if mousemove and touchmove events are fired only when the cursror is over the object * Setting to true will make things work more in line with how the DOM verison works. * Setting to false can make things easier for things like dragging + * It is currently set to false as this is how pixi used to work. This will be set to true in future versions of pixi. * @member {HTMLElement} * @private */ - this.moveWhenInside = true; + this.moveWhenInside = false; /** * Have events been attached to the dom element?