-
Completion % slider control with Delay
Hi,
I have 3 layers that have a linear expression on rotation and im create a slider A 0 to 100 as completion percent.
A = effect("Completion")("Slider");
index = 0 // layer 1
totalLayer = 3
offset = 1.5*index*thisComp.frameDuration;
linear(A,(100/totalLayer)*index,(100/totalLayer)*(index+1),0,90);
index = 1 // layer 2
totalLayer = 3
offset = 1.5*index*thisComp.frameDuration;
linear(A,(100/totalLayer)*index,(100/totalLayer)*(index+1),0,90);
index = 2 // layer 3
totalLayer = 3
offset = 1.5*index*thisComp.frameDuration;
linear(A,(100/totalLayer)*index,(100/totalLayer)*(index+1),0,90);
I’m not sure this proper way to this but worked, it starts one after another.
The question is, how can I make it time offset (to faster or delay), that calculated in the slider Completion percent?
Thank you