mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 14:40:38 +00:00
Added _volume property docs
This commit is contained in:
parent
1223bba62f
commit
569b395044
1 changed files with 8 additions and 0 deletions
|
@ -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);
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue