-
Overshoot Bounce Out Expression Needed!
I’ve discovered a lot of great expressions on the internet for a realistic bounce overshoot animation. The best one, and the one I’m going with is from Dan: https://www.motionscript.com/articles/bounce-and-overshoot.html
However, I’m looking for a “bounce out” overshoot expression- essentially just the reverse of the bounce in, where it bounces very little at the beginning and gradually gets larger before flying out to it’s final position. Simply reversing the inputs of the expression does not work.
I need this in expression form so that I can link certain values to sliders. Anyone have any resources or ideas on how to accomplish this?
Here is the bounce in animation from Dan that I am using:
freq = 3; decay = 5; t = time - inPoint; startVal = [0,0]; endVal = [200,200]; dur = 0.1; if (t < dur){ linear(t,0,dur,startVal,endVal); }else{ amp = (endVal - startVal)/dur; w = freq*Math.PI*2; endVal + amp*(Math.sin((t-dur)*w)/Math.exp(decay*(t-dur))/w); }
motionscript.com
Realistic Bounce and Overshoot
Dan Ebberts's resource for After Effects scripting and expressions