Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions Expression for freefall

  • Dan Ebberts

    January 22, 2015 at 5:09 am

    I think you’re going to have to be more specific.

    Dan

  • Alex Bradt

    January 22, 2015 at 2:21 pm

    I’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 pm

    Like this maybe:


    tStart = 3;
    g = 10000;
    if (time > tStart){
    t = time - tStart;
    y = g*t*t;
    }else{
    y = 0;
    }
    value + [0,y]

    Dan

We use anonymous cookies to give you the best experience we can.
Our Privacy policy | GDPR Policy