Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions Stop Wiggle, then rotate to specific degree.

  • Dan Ebberts

    June 20, 2010 at 4:31 pm

    Something like this, probably:

    timeToStart = 2;
    frameToStart = 12;
    timeToStop = 4;
    frameToStop = 12;
    easeTime = .5;

    d = thisComp.frameDuration;
    t1 = timeToStart + frameToStart*d;
    t2 = timeToStop + frameToStop*d;

    if (time t1 && time <= t2){ wiggle(3,25); }else{ easeOut(time,t2,t2+easeTime,wiggle(3,25,1,.5,t2),value); }
    Dan

  • Cameron Martin

    June 21, 2010 at 12:12 pm

    Excellent, Dan. Thank you.

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