mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-15 08:17:07 +00:00
needs to set detune outside of signal being overridden
This commit is contained in:
parent
660915680a
commit
8540c44459
1 changed files with 1 additions and 0 deletions
|
@ -195,6 +195,7 @@ export class FatOscillator extends Source<FatOscillatorOptions> implements ToneO
|
||||||
}
|
}
|
||||||
this.frequency.connect(osc.frequency);
|
this.frequency.connect(osc.frequency);
|
||||||
this.detune.connect(osc.detune);
|
this.detune.connect(osc.detune);
|
||||||
|
osc.detune.overridden = false;
|
||||||
osc.connect(this.output);
|
osc.connect(this.output);
|
||||||
this._oscillators[i] = osc;
|
this._oscillators[i] = osc;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue