-
Drift expression
I have been searching the threads, but with little knowledge of expressions I do have, I can’t translate what I need to a working expression.
I would like to drift an element based on a tracked movement. Right now I have my object parented to a null and the null is following the leader layer.
On the null:position
x = thisComp.layer(“leader”).position[0];
y = thisComp.layer(“leader”).position[1];
[x+5,y-50]rotation
thisComp.layer(“leader”).transform.rotation/5which is ok there is a little movement of the object based on a lot of movement of the leader null.
How do I get it to drift with an ease in both position and rotation?