Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions move one layer every minute upwards

  • Dan Ebberts

    January 24, 2016 at 5:33 pm

    Like this maybe:


    moveTime = .25;
    moveAmt = -100;
    m = Math.floor(time/60);
    t = time%60;
    y = 0;
    if (m > 0){
    y = ease(t,0,moveTime,(m-1)*moveAmt,m*moveAmt);
    }
    value + [0,y]

    Dan

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