diff --git a/src/Phaser.js b/src/Phaser.js index c4f7a7c0b1..82e0daf7df 100644 --- a/src/Phaser.js +++ b/src/Phaser.js @@ -75,7 +75,8 @@ var Phaser = Phaser || { }; -PIXI.InteractionManager = function () { - // We don't need this in Pixi, so we've removed it to save space - // however the Stage object expects a reference to it, so here is a dummy entry. -}; +// We don't need this in Pixi, so we've removed it to save space +// however the Stage object expects a reference to it, so here is a dummy entry. +// Ensure that an existing PIXI.InteractionManager is not overriden- in case you're using your own PIXI library. + +PIXI.InteractionManager = PIXI.InteractionManager || {};