-
adding a delay to an expression controlled by a slider
I have a bunch of layers with this position expression linked to sliders for x, y and z.:
a = wiggle(3,thisComp.layer(“Sliders”).effect(“Amp X”)(“Slider”));
b = wiggle(3,thisComp.layer(“Sliders”).effect(“Amp Y”)(“Slider”));
c = wiggle(3,thisComp.layer(“Sliders”).effect(“Amp Z”)(“Slider”));
[a[0],b[1],c[2]]I’m using it to wiggle the position of x,y,z.
I’ve keyframed the sliders to zero for the wiggle’s amplitude and all the layers stop moving at the same time.
Now I think I want to have the layers stop moving in succession.
How can i add a simple delay so that the effect of the slider happens in succession?
Thanks!