-
Change linear animation to EasyIn in expression
So, here’s the problem: I want to change this LINEAR animation and turn it to EASY IN, but the problem is that I have linked keyframes 4 and 5 (SCALE: x axis) with a Slider.
I WANNA CHANGE THAT LINEAR ANIMATION TO EASY IN . I DON’T KNOW IF THERE’S A WAY, BUT IF IT IS PLEASE HELP ME.
This is the expression I’ve using and works perfect (thanks Dan Ebberts), but I wanna make the animation Easy In ->
sVal = thisComp.layer("Control Panel").effect("Rectangle Scale [X]")("Slider");if (time < key(4).time)
x = linear(time,key(3).time,key(4).time,key(3).value[0],sVal)
else if (time < key(5).time)
x = sVal
else
x = linear(time,key(5).time,key(5).time,sVal,key(6).value[0]);
[x,value[1]]


