-
easeOut expression
I’m using this expression that I found in the forum to animate an X position from A to B. B being a dynamic value that can change depending on the input of “TextValue”.
max = thisComp.layer(“TextValue”).text.sourceText.value;
min = 0;
t1 = key(1).time;
t2 = key(2).time
if (time<=t1) min;
else if (time>t1 && time
Is there any way to edit the actual curve in this example?