-
reverse loopOut() with linear()? reverse looping layer animation time remap?
I’m totally stumped why I can’t get after effects to do this. I just want it to loop my animation which it does fine with just loopOut(“cycle”,0);
I can’t get this to work. I want to reverse the loop direction with a time remap on every other layer. Please help, i’m stuck. stuck stuck.
I’ve tried every combo of the following 6 second clip loop in the time remap expression. if i get it to work then it loses or drops a frame in one of the animations.
if ((index % 2) === 1) {
loopOut(“cycle”,0);
linear(time, 0, 6, key(1), key(2));
}
else {
loopIn(“cycle”,0);
linear(time, 0, 6, key(2), key(1));
}