Hello, thanks for helping.
I hope this help clarify what I am trying to do:
I start with a compostion in 3D. I have 10 text layers placed in my composition.
The 10 text layers (no keyframes) are parented to a Null object named ‘leader’ which is animated )position+rotation) in the composition.
I want the 10 text layers to follow the ‘leader’ with a delay that augments for each next Text layer. Maybe a slider for the time in-betwween each layer could be cool.
So far I have an independent invisible Solid for each Text Layer to which it is parented. Each Invisible Solid layer has those expressions:
[position]:
delay=thisComp.layer(“Slider”).effect(“delayer”)(“Slider”)/30*index;
thisComp.layer(“leader”).position.valueAtTime(time-delay);
(for each axis Rotation]:
delay=thisComp.layer(“Slider”).effect(“delayer”)(“Slider”)/30*index;
thisComp.layer(“leader”).rotationX.valueAtTime(time-delay);
[Slider]:
delayer = 13
It kind of works, but I feel it could be simpler.