diff --git a/src/interaction/InteractionManager.js b/src/interaction/InteractionManager.js index 4aa76f6..250e9e8 100644 --- a/src/interaction/InteractionManager.js +++ b/src/interaction/InteractionManager.js @@ -346,7 +346,7 @@ */ InteractionManager.prototype.processInteractive = function (point, displayObject, func, hitTest, interactive ) { - if(!displayObject.visible) + if(displayObject === undefined || !displayObject.visible) { return false; }