-
easy ease PROBLEM with Linear/ease()
Hello,
am trying to link some keys to markers using Dan Ebberts expression:L = thisLayer;
if ((L.marker.numKeys > 1 ) && (numKeys > 3)){
sIn = key(2).time - key(1).time;
sOut = key(4).time - key(3).time;
eIn = L.marker.key(1).time;
eOut = L.marker.key(2).time;
if (time < L.marker.key(2).time)
linear(time,eIn-sIn,eIn,key(1).value,key(2).value)
else
linear(time,eOut,eOut+sOut,key(3).value,key(4).value);
}else
value;which in my project case i changed “L” to target a layer in the parent comp:
L = comp("Comp 1").layer("Glass S01");Everything is working fine except for one thing, my ease animation!, i tried to replace the linear with ease, but this gave me the normal easy ease we do using F9, i want to preserve my ease animation i did in the graph editor! is there a way to control my In and Out animation with markers while preserving my ease curves?
Thanks,
Bilal