-
Looping an Expression in AE
Hello Forum,
I would like to know how do I loop an expression in After Effects.
The expression attached generates a wave like a heart beat monitor and I would like to keep repeating this wave being able to choose the interval between the repetitions. Is it possible?
Thank you!
veloc = 10;
amplitude = 100;
decay = 2;
x = 1*timeToFrames(time);
y = amplitude*Math.cos(veloc*time)/Math.exp(decay*time);
value + [x,y]