Skip to content

Instantly share code, notes, and snippets.

@ThaDewey
Last active February 26, 2024 03:22
Show Gist options
  • Save ThaDewey/96bb0069e2ecf0bb764c7d4047a1d50d to your computer and use it in GitHub Desktop.
Save ThaDewey/96bb0069e2ecf0bb764c7d4047a1d50d to your computer and use it in GitHub Desktop.
overshoot - Maybe this will help you.Add position to your text,disable range selector and add expression selector.Apply the expression below to “amout” propety.and change the value inside as needed.. https://creativecow.net/forums/thread/overshoot-per-character-using-text-animator/
delay = .1;
myDelay = delay*textIndex;
t = (time - inPoint) - myDelay;
if (t>=0){
freq =3;
amplitude = 150;
decay = 8.0;
s = amplitude*Math.cos(freq*t*2*Math.PI)/Math.exp(decay*t);
{s,s}
}else{
value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment