mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 08:38:00 +00:00
gain reduction to compensate for the signal split
otherwise the volume is doubled
This commit is contained in:
parent
b4d2ad9bc7
commit
007c1f0bbd
1 changed files with 1 additions and 0 deletions
|
@ -70,6 +70,7 @@ function(Tone){
|
|||
//connections
|
||||
this.input.connect(this._mono, 0, 0);
|
||||
this.input.connect(this._mono, 0, 1);
|
||||
this.input.gain.value = this.dbToGain(-10);
|
||||
this._mono.connect(this._split);
|
||||
//dry wet connections
|
||||
this._mono.connect(this.dryWet.dry);
|
||||
|
|
Loading…
Reference in a new issue