Hi, friends:
I have a plant with 5seds wind animation, how can I make it to a ping pong loop? Need I use some expression on the frame attr of abc?
Thanks!
abs((abs(F)+(25)-2)%(((25)-1)*2)-(25)+1)+1
rangeStart = 0;
rangeEnd = 25;
currentRangeId = ceil(F / rangeEnd);
fwd = cycle(F, rangeStart, rangeEnd );
bck = rangeEnd - fwd;
if (currentRangeId % 2) {
output = fwd;
} else {
output = bck;
}
output
qinyao wrote:Hi, friends:
I have a plant with 5seds wind animation, how can I make it to a ping pong loop? Need I use some expression on the frame attr of abc?
Thanks!