Last active
September 27, 2019 05:19
-
-
Save Londeren/27d80e5c92a9a307dc75a155b5d6162e to your computer and use it in GitHub Desktop.
After effects bounce timur-ko.livejournal.com/38980.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
amp = .1; //Чем больше значение, тем больше амблитуда | |
freq = 5; //Чем больше значение, тем больше частота | |
decay = 7; //Чем больше значение, тем меньше задержка | |
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);value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);}else{value;} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment