diff --git a/v3/src/sound/BaseSound.js b/v3/src/sound/BaseSound.js index 26d406cff..d7e724cde 100644 --- a/v3/src/sound/BaseSound.js +++ b/v3/src/sound/BaseSound.js @@ -308,6 +308,12 @@ var BaseSound = new Class({ this.isPaused = false; return true; }, + /** + * Stop playing this sound. + * + * @method Phaser.Sound.BaseSound#stop + * @returns {boolean} Whether the sound was stopped successfully. + */ stop: function () { if (!this.isPaused && !this.isPlaying) { return false;