diff --git a/v3/src/sound/BaseSound.js b/v3/src/sound/BaseSound.js index 633982964..26d406cff 100644 --- a/v3/src/sound/BaseSound.js +++ b/v3/src/sound/BaseSound.js @@ -294,6 +294,12 @@ var BaseSound = new Class({ this.isPaused = true; return true; }, + /** + * Resumes the sound. + * + * @method Phaser.Sound.BaseSound#resume + * @returns {boolean} Whether the sound was resumed successfully. + */ resume: function () { if (!this.isPaused || this.isPlaying) { return false;