Added stopall event docs

This commit is contained in:
Pavle Goloskokovic 2018-01-26 14:57:18 +01:00
parent 996a77cd10
commit e2092dfacd

View file

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