We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9550d6f commit 9ce14d6Copy full SHA for 9ce14d6
1 file changed
src/sound/webaudio/WebAudioSoundManager.js
@@ -60,14 +60,14 @@ var WebAudioSoundManager = new Class({
60
this.masterVolumeNode = this.context.createGain();
61
62
this.masterMuteNode.connect(this.masterVolumeNode);
63
-
64
this.masterVolumeNode.connect(this.context.destination);
65
66
/**
67
* Destination node for connecting individual sounds to.
68
*
69
* @name Phaser.Sound.WebAudioSoundManager#destination
70
* @type {AudioNode}
+ * @private
71
* @since 3.0.0
72
*/
73
this.destination = this.masterMuteNode;
0 commit comments