start out with the min delay time

This commit is contained in:
Yotam Mann 2014-09-20 21:18:37 -04:00
parent 007c1f0bbd
commit 018498b22a

View file

@ -90,6 +90,8 @@ define(["Tone/core/Tone", "Tone/signal/ScaleExp", "Tone/signal/Signal"], functio
//resonance control
this.chain(this.resonance, this._resScale, this._feedback.gain);
this._feedback.connect(this.output);
//set the delay to the min value initially
this.setDelayTime(minDelay);
};
Tone.extend(Tone.LowpassCombFilter);