Activity › Forums › Adobe After Effects Expressions › Per Character Bounce Scale
-
Dan Ebberts
November 5, 2014 at 2:37 pmYou could try something like this to time the reveal of each word with layer markers:
freq = 3;
decay = 5;
startVal = [100,100];
endVal = [0,0];
dur = 0.1;try{
t = time - marker.key(textIndex).time;
}catch (err){
t = 0;
}if (t > 5){
endVal
}else if (t > 0){
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);
}
}else
startVal
Dan
-
Jaqai Mickelsen
November 5, 2014 at 4:18 pmPerfect! My goodness. I feel like every After Effects user needs to work together on getting a statue erected in your in your honor. You just saved me a ridiculous amount of time.
Thank you VERY much.
-
Stacy Obakpolor
October 15, 2015 at 8:20 pmThank you so much for all your help!! This will save me a tremendous amount of time. You’re a saint.
Reply to this Discussion! Login or Sign Up