Skip to content

Commit 34b9bb6

Browse files
Added resumeAll method docs
1 parent 934b715 commit 34b9bb6

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

v3/src/sound/BaseSoundManager.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,11 @@ var BaseSoundManager = new Class({
224224
});
225225
this.events.dispatch(new SoundEvent(this, 'SOUND_PAUSE'));
226226
},
227+
/**
228+
* Resumes all the sounds in the game.
229+
*
230+
* @method Phaser.Sound.BaseSoundManager#resumeAll
231+
*/
227232
resumeAll: function () {
228233
this.forEachActiveSound(function (sound) {
229234
sound.resume();

0 commit comments

Comments
 (0)