-
Combining expressions on same layer
Hi. I am new at learning expressions and trying to figure out how to combine to expressions on same layer. Essentially, I am trying to bounce an object into the frame from off stage and then begin to wiggle once it has finished the bounce. Any help would be greatly appreciated.
<b>The first expression I am using is:</b>amp = .03;
freq = 3.0;
decay = 5.0;
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 && t < 1){
v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{value}<b>The second expression I want to add is:</b>
wiggle(1,9)