-
Looping an expression itself.
I am using this expression to make a square jiggle and decay to a stop in the y dimension.
freq =3;
amplitude = 15;
decay = 5;s = amplitude*Math.sin(freq*time*2*Math.PI)/Math.exp(decay*time);
scale + [0,s]How can I make this expression essentially RESTART every second? I though using “loopOut ( the expression)” would do it but it did not.