-
what drives the expression to loop ?
Hi
Can someone clarify :
Trying to move the camera from layer1’s position to layer2’s position and then from layer2.position to layer3.position etc…
I want to understand what drives the expression besides time.
my regular javaScript doing only the last move (from layer4’s to layer5’s).for (i=1; i

for (i=1; i<index;i++){
Pos1 = thisComp.layer(i);
Pos2 = thisComp.layer(i+1);
P1 = Pos1.transform.position;
P2 = Pos2.transform.position;ease(time,P1,P2);
};
