-
shape layers with delay
hi there!
I want to make several shapes inside a shape layer follow an animation with delay… As the usual follow the leader, but with a bunch of shapes instead of layers.
So I have this on an ellipse path`s size:
thisIndex=thisProperty.propertyGroup(2).propertyIndex;
e=effect("size")("Point");
d=effect("delay")("Slider")*thisComp.frameDuration*(thisIndex - 1);
e.valueAtTime(time - d);The thing is it works with one group, it follow the Point values with the delay, but when I duplicate the group, has the same delay as the first one, and not offseted
Any clue? I guess the problem is on the thisIndex?
Thanks!