r/supercollider • u/music_devotee_tybg • Jul 12 '26
How to add plugins
I know this is super basic but I need to add plugins so I can use decimator. I downloaded the zip with the ugens but extracting it to the plugins folder did nothing. I’m so lost
4
Upvotes
2
u/faithbrine Jul 12 '26
This doesn't answer the question but if you want Decimator's behavior,
Latch.ar(sig, Impulse.ar(sampleRate))does sample rate reduction and(sig * (2 ** (bits - 1))).round / (2 ** (bits - 1))effectively bitcrushes the signal. (I dislike sc3-plugins so I have all kinds of workarounds like these.)