-
Adding 100% ease to this expression
Hi I’m using the below expression to control 2 keyframe positions on a simple A to B animation.
Once the expression is added it became a linear move so I swapped ‘linear’ to ‘ease’ but how can I control the amount of ease and have it set to out 30% / in 100%
Probably a simple fix but I’ve not done it before.Thanks!
if (numKeys > 1){
t1 = key(1).time;
t2 = key(2).time;
v1 = thisComp.layer("CONTROLS").effect("Position 01")("Slider");
v2 = thisComp.layer("CONTROLS").effect("Position 02")("Slider");
ease(time,t1,t2,v1,v2);
}else
value