diff --git a/v3/src/sound/webaudio/WebAudioSound.js b/v3/src/sound/webaudio/WebAudioSound.js index c473faadb..c8dccad3b 100644 --- a/v3/src/sound/webaudio/WebAudioSound.js +++ b/v3/src/sound/webaudio/WebAudioSound.js @@ -65,6 +65,10 @@ var WebAudioSound = new Class({ return this; }, stop: function () { + BaseSound.prototype.stop.call(this); + this.source.stop(); + this.source = null; + this.startTime = 0; return this; }, update: function () {