Creative Communities of the World Forums

The peer to peer support community for media production professionals.

Activity Forums Adobe After Effects Expressions ease wiggle value out at time

  • ease wiggle value out at time

    Posted by David Wiffen on November 24, 2010 at 5:35 pm

    Here’s my code:

    timeToStop = 6;
    if (time > timeToStop){
    value;
    }else{
    [value[0],wiggle(0.3,7)[1],value[2]];
    }

    Is there a way to say to the wiggle in this instance to ease down the amplitude between 5 and 6 seconds from current value to zero?

    Any help very much appreciated.

    Dan Ebberts replied 15 years, 6 months ago 2 Members · 1 Reply
  • 1 Reply
  • Dan Ebberts

    November 24, 2010 at 6:43 pm

    This should work:

    beginStop = 5;
    endStop = 6;
    ease(time,beginStop,endStop,[value[0],wiggle(0.3,7)[1],value[2]],value)

    Dan

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