Added mute property docs

This commit is contained in:
Pavle Goloskokovic 2018-01-08 19:35:13 +01:00
parent 569b395044
commit 4fb2959361

View file

@ -58,6 +58,12 @@ var HTML5AudioSoundManager = new Class({
this.onBlurPausedSounds = null;
}
});
/**
* Global mute setting.
*
* @name Phaser.Sound.HTML5AudioSoundManager#mute
* @property {boolean} mute
*/
Object.defineProperty(HTML5AudioSoundManager.prototype, 'mute', {
get: function () {
return this._mute;