-
follow the leader maintain original position
I have a column of square layers like this :
.
.
.
.
.
.I want the bottom one to fall away and then have the rest follow with a delay so I use this expression on the layers above the bottom layer:
delay = thisComp.layer(“USA”).effect(“delay”)(“Slider”); //number of frames to delayd = 5;
thisComp.layer(index + 1).transform.position.valueAtTime(time – d)of course this puts all the layers at the start position of the bottom layer.
How would I tell the expression to maintain current position or build in a yOffset that would compensate?Thanks