-
Loop out at marker
Trying to work out an expression that will loopOut() Time Remap keyframes starting at a marker.
startMarkerTime = thisLayer.marker.key(1).time;
I can get the animation to start at the marker, but not loop:
if (time <= startMarkerTime) {
0
} else {
time - startMarkerTime
}Or I can get the loop to start at the marker, but not from the first frame:
if (time <= startMarkerTime) {
0
} else {
loopOut()
}How can I get the animation to start at the marker AND loopOut starting from the first frame?