Merge pull request #2284 from RetrocadeNet/tweenManagerStubMethodToPreventError

Added removeAll to TweenManager's stub so call from stageManager does…
This commit is contained in:
Richard Davey 2016-02-01 18:43:42 +02:00
commit 0b8fc6e7d0

View file

@ -12,5 +12,6 @@
Phaser.TweenManager = function () {};
Phaser.TweenManager.prototype.update = function () {};
Phaser.TweenManager.prototype.removeAll = function () {};
Phaser.TweenManager.prototype.constructor = Phaser.TweenManager;