[Dan Ebberts] “You could modify the fade in/out expression to something like this for position:
moveDur = .5;
moveDist = [20,0];
if (time < (inPoint+outPoint)/2)
ease(time,inPoint,inPoint+moveDur,value,value+moveDist)
else
ease(time,outPoint-moveDur,outPoint,value+moveDist,value)
Dan”
What if I want to control which axis it moves on? In my case, I want it to move on Y-axis instead of X-axis. Thanks.