Hello everyone,
Is it possible to change the rotation of a knob from clockwise to counter clockwise? Also, is it possible to set the range of the knob throw in degrees (like 0-90 degrees).
This is my first post since discovering this very cool community!
Thanks for your help in advance!
Sam
Hi Sam,
You can reverse the range. And then set the origin under the knob properties to 0
.
{
"min": 1,
"max": 0
}
Then the knob will act counterclockwise / in reverse.

You can add steps along the way from 0-90 degrees if that's what you mean. I'm not sure I understand your second question.
Cheers,
DMDComposer
1 Like
Very cool, thank you!
And what I meant, is how to set the full range of the knob so that it only moves X (90, 180 etc) degrees while outputting it's normal parameter range.
I hope this makes sense!
Something like this?
{
"min": { "0/360": 1 },
"25%": { "90": 0.75 },
"50%": { "180": 0.5 },
"75%": { "270": 0.25 },
"max": { "": 0 }
}
Yes exactly. Thanks again for all your help!
1 Like