-
follow a null with delay for another layer
Hey guys, I need some help!
I have a 1080 comp and a huge list (that are out of the comp) of itens parented a Null that is the “Controller of the scroll”. I need the some of these itens arrive with delay. I got kinda of work, but the position keep going, dont stop at the keyframe. I have initial 4 keyframes; in, stop, move 50px, out. Tese is the basic movement that the Null will do. And the other footages and text follow this null. But the delay need be with the index-1.
This is the monster that I did:
pOut = 900;
pStart = 1080; //when start in the comp
p = toComp(anchorPoint)[1];
posIn = transform.yPosition;
posEnd = thisComp.layer("White Solid 3").transform.yPosition.valueAtTime(time - .50); // should be index-1 but doesn’t work for me
if (p < pStart)
easeIn(p,pStart,pOut,[posEnd],[posIn])
else
posIn // after get the original position should be at the original position, without the delay.Other question, how can I parent a position to another layer and the child keep his original position?
Thank you in advance,
Gus