-
“if statemant” multiple conditions problem
Hi,
I’m trying to make onle layer animate up if some conditions are met and stop at certain point.
It starts moving but I want it wont stop even if not all conditions aren’t met anymore.lines = effect("lines")("Slider");
maxPos = lines*10; //maximum Y value aka stop point
s = 3.4; //starting timeif (time>s && lines>7 && value[1]>maxPos)
[value[0],value[1]+((time-s)*-130)]
else
valuealso, what should I do to make the animation start gradually (ease out)
Thank you.