Activity › Forums › Adobe After Effects Expressions › Expression for freefall
-
Expression for freefall
Posted by Alex Bradt on January 22, 2015 at 3:51 amHello,
Is there a simple expression for free-fall in AE?
-Alex
Dan Ebberts replied 11 years, 6 months ago 2 Members · 3 Replies -
3 Replies
-
Alex Bradt
January 22, 2015 at 2:21 pmI’m looking for an expression for an object to start at rest and then break into free fall.
-
Dan Ebberts
January 22, 2015 at 5:16 pmLike this maybe:
tStart = 3;
g = 10000;
if (time > tStart){
t = time - tStart;
y = g*t*t;
}else{
y = 0;
}
value + [0,y]Dan
Reply to this Discussion! Login or Sign Up