-
Squash and Stretch on scale text animator
Hello to everyone! I’m looking for a expression that can help me to automate a lot of text animations, the idea is move every word of a paragraph from down to up with a overshoot and when every word touch the base I want that every word make a squash and stretch, for the movement of down to up I’m using this expression into a expression selector on amount property:
swings=3;
timeOffset=1;
overshoot = 300;
v=valueAtTime(time-timeOffset*textIndex/textTotal)[0];
anim=Math.PI*v/overshoot;
amp=easeOut(v,0,100,100,0);
Math.cos(anim*swings)*amp;this works perfect, now I need animate the scaling property of the same way but with a squash and stretch effect.
Thanks!!
Sorry, there were no replies found.