Custom (finer) knob resolution
-
Hi guys!
Is it possible to have any other stepSize for knobs as the built in ones?
Like 0.0001 for example. -
@darkInteger Might be able to do it with a custom knob using a panel - but why?
-
@d-healey
Actually i have a frequency knob from 20 to 8000 Hz it sets a sineosc frequency .. this osc goes into a delay line. I use this as a drone machine.. so the tiniest steps on the freq knob change the sound dramatically so it would be handy to have finer stepSizes. And turning the knob is a bit steppy. -
@darkInteger yes, set it from the script
knob.set("stepSize", 0.0001);
-
@aaronventure
Thx!!!
I got it: Knob1.setRange(0, 1, 0.0001)