Stagger Delay

Automatically stagger animation timing across duplicated layers.

Expression Code

// Stagger Delay
// Apply to any property with keyframes
// Duplicate the layer to create stagger

delay = 0.1; // Seconds between each layer

d = delay * (index - 1);
valueAtTime(time - d);
Apply to any keyframed property. Duplicate the layer as many times as needed. Each copy automatically delays its animation based on its layer index.