SuperClean
SuperClean copied to clipboard
vector synth
Synth wrapper around VOsc object. Allows for seamless scrolling through consecutive buffers of wavetables.
Howdy! Great work on this. It sounds absolutely stellar!
Couple things:
• The end
parameter name is already being used somewhere else.
• The built in folding sounds great, but, I'd like to drive it some other way (unique parameter name to this synth) than with amp
as is the case now. Might be nice to offer amplitude compensation like in the sha
param for the waveshaping instance effect also, let's discuss.
• How would you feel about not exposing buf
and bufn
and instead taking care of that stuff under the hood.
Howdy! Great work on this. It sounds absolutely stellar!
Couple things:
• The
end
parameter name is already being used somewhere else.• The built in folding sounds great, but, I'd like to drive it some other way (unique parameter name to this synth) than with
amp
as is the case now. Might be nice to offer amplitude compensation like in thesha
param for the waveshaping instance effect also, let's discuss.• How would you feel about not exposing
buf
andbufn
and instead taking care of that stuff under the hood.
I think the buf and bufn arguments are hard to handle under the hood, since the wavetables are using the same buffers as all other samples used by supakleen. The synth needs to know which bufnum is the start of the consecutive buffers allocated with wavetables, and also how many there are to be able to handle morphing between them under the hood.
Could vbeg
and vend
be replacements for beg
and end
?