Added pauseall event docs

This commit is contained in:
Pavle Goloskokovic 2018-01-26 14:56:33 +01:00
parent 532e506241
commit e4e0879347

View file

@ -247,6 +247,10 @@ var BaseSoundManager = new Class({
this.forEachActiveSound(function (sound) {
sound.pause();
});
/**
* @event Phaser.Sound.BaseSoundManager#pauseall
* @param {Phaser.Sound.BaseSoundManager} soundManager - Reference to the sound manager that emitted event.
*/
this.emit('pauseall', this);
},
/**