Mr. Dan Ebberts to the rescue as always! Thanks!!!
Just for my own understanding, would you mind explaining why the modulo operator?
I understand that segLength is how often I wan my animation to repeat, in this case every 60 seconds. Then t is the comp’s time minus the in point, in this case the start of my comp, so that leaves us with the following:
at 60 seconds it would be
t=60-in point (which is 0) = 60
60/60 = 1, % (the remainder) = 0
so then
valueAtTime(t) would be 0, right?
How does that produce the desired behavior?
Thanks again!
D.