EKeys
EXAMPLE OF SETUP
const eKeys = footage(“eKeys.jsx”).sourceData;
const keys = [
{
keyTime: 1,
keyValue: [100, 540],
easeOut: 90,
},
{
keyTime: 2,
keyValue: [800, 540],
easeIn: 100,
},
];
eKeys.animate(keys, (time = thisLayer.time));
BOTTOM RIGHT
-
keyTimeThe location of the keyframe on the timeline, in seconds
-
keyValueThe value of the keyframe, which can be a
numberorarray -
easeInandeaseOutThe amount of easing to be applied as a number between
0and100(both defaulting to33).This works the same way as the influence percentage on traditional keyframes.
-
velocityInandvelocityOutThe incoming and outgoing velocity of the keyframe (both defaulting to
0).