Tone.js/src/instrument/MonoSynth.js

13 lines
285 B
JavaScript
Raw Normal View History

define(["core/Tone", "component/Envelope", "source/Oscillator"], function(Tone){
Tone.MonoSynth = function(){
//one oscillator
this.oscillator = this.context.createOscillator();
this.glideTime = .01;
this.filterEnvelope = new Tone.Envelope();
}
return Tone.MonoSynth;
})