Frame Repeat Fade
Repeats frames for a trailing ghost effect and slowly fades them.
Code
lag = 0.1; // seconds
repeats = 5;
trail = 0;
for(i=0; i<repeats; i++) {
trail += valueAtTime(time - i*lag);
}
trail / repeats
framerepeatfadeanimation
How to Use
Apply to properties like Opacity or even Position to create a repeated ghost-like trailing. Adjust lag and repeats to control the effect intensity.