how does clamp work?
Posted: Fri Jul 08, 2011 10:22 am
do you put it in before you assign a value or after?
The rapid development solution with a tiny footprint
http://www.emix8.org/forum/
Code: Select all
// Indirect
T = App.Time;
T = clamp(T,0,1);
// Direct
T = clamp(App.Time,0,1);