You're creating an animation sequence with the animate
function and you're using the repeat
option.
Explanation
The way animation sequences work in Motion is each segment automatically plays after the previous segment.
In the above example, the "ul"
animation will repeat 10 times before the "li"
animation plays.
It's also possible to adjust this using the at
option.
Both of these behaviours require that the "ul"
animation actually ends at a specific time. It can't repeat infinitely, and therefore a limit before that has been chosen of 20
repeats.
Solution
It's always possible to repeat an entire animation an infinite number of times.
Therefore, if you want to repeat an animation a higher number of times than 20
, then this segment can be made its own animation.