Added _volume property docs

This commit is contained in:
Pavle Goloskokovic 2018-01-08 19:34:55 +01:00
parent 1223bba62f
commit 569b395044

View file

@ -22,6 +22,14 @@ var HTML5AudioSoundManager = new Class({
* @default false
*/
this._mute = false;
/**
* Property that actually holds the value of global volume
* for HTML5 Audio sound manager implementation.
*
* @private
* @property {boolean} _volume
* @default 1
*/
this._volume = 1;
BaseSoundManager.call(this, game);
},