AE Ease and Wizz

  • Started
  • Last post
  • 1 Response
  • CyBrainX

    Hoping for some help from you wizz kids out there.

    I love the easing methods but would like to adjust some of the numbers based on amplitude and timing. I changed these numbers at the top of the generated expression for Bounce but this doesn't seem to affect the animation at all. Thanks in advance.

    var p = 0.4; // period for elastic
    var a = 10; // amplitude for elastic
    var s = 1.70158 / 4; // overshoot amount for "back"

  • Ramanisky20

    n = 0;
    if (numKeys > 0){
    n = nearestKey(time).index;
    if (key(n).time > time){
    n--;
    }
    }
    if (n == 0){
    t = 0;
    }else{
    t = time - key(n).time;
    }

    if (n > 0){
    v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
    amp = .02;
    freq = 3.0;
    decay = 4.0;
    value + v*amp*Math.sin(freq*t*2*Math.PI...
    }else{
    value;
    }

    past this in either scale or position keyframes
    and just adjust the
    amp, freq, & decay numbers