diff --git a/src/interaction/InteractionManager.js b/src/interaction/InteractionManager.js index 520ac5e..5ea88f5 100644 --- a/src/interaction/InteractionManager.js +++ b/src/interaction/InteractionManager.js @@ -57,6 +57,10 @@ */ this.mouse = new InteractionData(); + // setting the pointer to start off far off screen will mean that mouse over does + // not get called before we even move the mouse. + this.mouse.global.set(-999999); + /** * An event data object to handle all the event tracking/dispatching *