Forums › Adobe After Effects Expressions › Text Bounce out effect
Text Bounce out effect
Yannick Michel
November 20, 2019 at 10:37 amHi,
I use an expression to make my text bounce in, but I can’t figure out how to change the expression to make my text bounce out of the screen. Someone could help me with this?here is the expression I use:
delay = 0.03;
myDelay = delay*textIndex;
t = (time - inPoint) - myDelay;
if (t >= 3){
freq =3;
amplitude = 150;
decay = 8;
s = amplitude*Math.cos(freq*t*2*Math.PI)/Math.exp(decay*t);
[s,s]
}else{
value
}Dan Ebberts
November 20, 2019 at 8:01 pmI’m trying to understand how it works. Why is this in there:
if (t >= 3){
Dan
Viewing 1 - 2 of 2 posts
Log in to reply.