mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-09 18:38:46 +00:00
8 lines
210 B
JavaScript
8 lines
210 B
JavaScript
|
//dependencies Tone, Envelope, Noise, LFO
|
||
|
|
||
|
Tone.MonoSynth = function(){
|
||
|
//one oscillator
|
||
|
this.oscillator = this.context.createOscillator();
|
||
|
this.glideTime = .01;
|
||
|
this.filterEnvelope = new Tone.Envelope();
|
||
|
}
|