Page 1 of 1

Limiting Sliders values

Posted: August 19th, 2009, 1:38 pm
by NickNoir
Hey

I have wondered net to find how to limit sliders values to some area.
I know the "Edit value" but that doesn't limit slider. Is there expression or something else how you can limit slider values for area ex.like 0-274?

Re: Limiting Sliders values

Posted: August 25th, 2009, 6:07 am
by Paul Tuersley
You could apply this expression to the slider property:

Code: Select all

clamp(value, 0,274);

Re: Limiting Sliders values

Posted: August 25th, 2009, 11:57 am
by NickNoir
It worked. Thank you Paul Tuersley.