美文网首页
AE 回弹脚本

AE 回弹脚本

作者: Zszen | 来源:发表于2020-07-01 17:37 被阅读0次
    freq = 3;
    decay = 5;
    n = 0;
    if (numKeys > 0){
     n = nearestKey(time).index;
     if (key(n).time > time) n--;
    }
    if (n > 0){
     t = time - key(n).time;
     amp = velocityAtTime(key(n).time - .001);
     w = freq*Math.PI*2;
     value + amp*(Math.sin(t*w)/Math.exp(decay*t)/w);
    }else
     value
    

    相关文章

      网友评论

          本文标题:AE 回弹脚本

          本文链接:https://www.haomeiwen.com/subject/noshqktx.html