You can tell I don’t read posts thoroughly.
If you got that to work brill.
An alternative, as well is (time < (inPoint + outPoint)/2) which simply means, if I’m before the middle of the layer. I use this a lot, for scaling and position, but I’ve never had to go to a third point.
t =.25;
posa = [0,0];
posb = [100,100];
posc = [100,200];
if(time < (inPoint + outPoint)/2) {
ease(time,inPoint,inPoint + t,posa,posb)
}else{
ease(time,outPoint – t,outPoint,posb,posc)
}
it makes no difference really i think… With me still getting used to expressions 2 years later < or >…they break my brain haha, as I don’t know if they have a significant difference to writing it < or >.
Anyways…Glad it’s working.