diff --git a/v3/src/sound/BaseSoundManager.js b/v3/src/sound/BaseSoundManager.js index dd00e6d89..8ff668934 100644 --- a/v3/src/sound/BaseSoundManager.js +++ b/v3/src/sound/BaseSoundManager.js @@ -119,7 +119,11 @@ var BaseSoundManager = new Class({ removeByKey: NOOP, pauseAll: NOOP, resumeAll: NOOP, - stopAll: NOOP, + stopAll: function () { + this.sounds.forEach(function (sound) { + sound.stop(); + }); + }, /** * @private */