Manual Ping-Pong Loop
Creates a forward-backward (yo-yo) loop without loopOut().
Code
dur = 2; // seconds
var t = time % dur;
(t > dur / 2) ? dur - t : t;
looptimingpingpong
How to Use
Place on Time-Remap or any animatable value to bounce between start and end every `dur` seconds.