-
bounce expression without having to precomp the layer
k=100; // final scale a=10; // how quickly the bounce ends b=20; // how many bounces it'll do (that is, the bounce speed) x=k*(1-Math.exp(-a*time)*Math.cos(b*time)); [x,x]
I am doing an animation with many layers bouncing into view at different times.
I have an expression to do this but it only does it from the first frame of the composition.
How would i adjust this to make is start at the beginning of the layer?
or maybe someone knows of another script that will do this.thanks!