mirror of
https://github.com/scratchfoundation/scratch-audio.git
synced 2024-12-22 14:02:29 -05:00
Fix comment
This commit is contained in:
parent
b7ff586ca1
commit
a081333ddd
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class AudioPlayer {
|
|||
this.panEffect = new PanEffect(this.audioEngine.audioContext);
|
||||
|
||||
// Chain the audio effects together
|
||||
// effectsNode -> panEffect -> audioEngine.input -> destination (speakers)
|
||||
// effectsNode -> panEffect -> audioEngine.input
|
||||
this.effectsNode = this.audioEngine.audioContext.createGain();
|
||||
this.effectsNode.connect(this.panEffect.panner);
|
||||
this.panEffect.connect(this.audioEngine.input);
|
||||
|
|
Loading…
Reference in a new issue