Added resume event docs

This commit is contained in:
Pavle Goloskokovic 2018-01-26 15:23:48 +01:00
parent 58006988f0
commit fd2995d978

View file

@ -135,6 +135,10 @@ var HTML5AudioSound = new Class({
if (!this.pickAndPlayAudioTag()) {
return false;
}
/**
* @event Phaser.Sound.HTML5AudioSound#resume
* @param {Phaser.Sound.HTML5AudioSound} sound - Reference to the sound that emitted event.
*/
this.emit('resume', this);
return true;
},