mirror of
https://github.com/photonstorm/phaser
synced 2024-12-03 18:10:10 +00:00
Fixed destination property docs
This commit is contained in:
parent
9550d6f9fe
commit
9ce14d62be
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,6 @@ var WebAudioSoundManager = new Class({
|
|||
this.masterVolumeNode = this.context.createGain();
|
||||
|
||||
this.masterMuteNode.connect(this.masterVolumeNode);
|
||||
|
||||
this.masterVolumeNode.connect(this.context.destination);
|
||||
|
||||
/**
|
||||
|
@ -68,6 +67,7 @@ var WebAudioSoundManager = new Class({
|
|||
*
|
||||
* @name Phaser.Sound.WebAudioSoundManager#destination
|
||||
* @type {AudioNode}
|
||||
* @private
|
||||
* @since 3.0.0
|
||||
*/
|
||||
this.destination = this.masterMuteNode;
|
||||
|
|
Loading…
Reference in a new issue