Bounce from the wall like from the floor

Moderators: Disciple, zlovatt

Post Reply
versa
Posts: 3
Joined: July 25th, 2008, 9:27 am

Try to make effect like here http://www.adobe.com/type/, like a Steve Holmes, from Energy Design make. I find bouncing text effect in AE CS3 presets, but it works only along Y axis (vertical direction). How I can modificate it? Or can some one help with scalebel expression for different tasks? Resume: want to make bouncing effect not from the floor only, but from the right or left wall.

Also find this one at http://forums.creativecow.net/readpost/2/917108, but it bouncing and sliding from the floor :(
For Position:

Code: Select all

Vy0 = 800; //initial y velocity (pixels/second) 
Vx0 = 450; // initial x velocity (pixels/second) 
g = 2500; // gravity (pixels/second/second) 
floor = 400; 
e = .85; //elasticity 

b = floor - position[1]; 
h = b + Vy0*Vy0/(2*g); 
T = Vy0/g + Math.sqrt(2*h/g); 

if (time < T){ 
y = Vy0*time - g*time*time/2 + b; 
}else{ 
Vy = -(Vy0 - g*T); 
while (true){ 
Vy *= e; 
t = T; 
T += 2*Vy/g; 
if (time < T){ 
t = time - t; 
y = Vy*t - g*t*t/2; 
break; 
}else if (T - t < thisComp.frameDuration){ 
y = 0; 
break; 
} 
} 
} 
[position[0] + Vx0*(-Math.pow(2,-time) +1), floor - y]
:D Thank's for help!
User avatar
Atomic
Posts: 157
Joined: April 30th, 2007, 5:55 am
Location: United States, Ohio

What about something like this...

Code: Select all

maxDev = 122.20; // max deviation in pixels
spd = 8;  //speed of oscillation
decay = 1.0; //how fast it slows down

t = time - inPoint;
x = position[0];
y = position[1];

//Apply v to the axis you want to modulate.
v = position[0] + maxDev*Math.sin(spd*t)/Math.exp(decay*t);
//y = position[0]*position[1]/v;

[v,y]
Play around with the numbers
"Up And Atom

No...No

Up And At Them!"
versa
Posts: 3
Joined: July 25th, 2008, 9:27 am

Atomic, thanks! It works, but the text moves softly to the left and to the right without impact of a "wall" at the left. How it is possible to improve? :?:

UPD I mean, that first time it impacts well and bounce to the right in my case. But after thet it to much slide to the left, doing transition through conditional border of a wall. And effect of bouncing loosing. :(
kobyg
Posts: 128
Joined: December 7th, 2007, 10:11 am

Try changing the v expression to this one:

v = position[0] + maxDev*Math.abs(Math.sin(spd*t))/Math.exp(decay*t);

Koby.
versa
Posts: 3
Joined: July 25th, 2008, 9:27 am

:lol: Ya-ho-o-oooo! now it's wOrK! Thank you guys!
Post Reply