-
Start random opacity fades of multiple layers at specific time
I’m currently using this expression to randomly fade multiple layers:
fadeDuration = thisComp.frameDuration*10;
maxDelay = .5;
seedRandom(index,true);
delay = random(maxDelay);
t = time -(inPoint + delay);
linear(t,0,fadeDuration,100,0);
Is there a simple way to be able to adjust when in my timeline these fades will start? Right now it all happens at the beginning of the timeline.