diff --git a/src/interaction/InteractionManager.js b/src/interaction/InteractionManager.js index 6314090..6764d8f 100644 --- a/src/interaction/InteractionManager.js +++ b/src/interaction/InteractionManager.js @@ -349,7 +349,7 @@ */ InteractionManager.prototype.processInteractive = function (point, displayObject, func, hitTest, interactive ) { - if(!displayObject.visible) + if(!displayObject || !displayObject.visible) { return false; }