-
Add “Inertial Bounce” Expression to a current Expression
Following is the Inertial Bounce Expression Script –
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 = .05;
freq = 4.0;
decay = 2.0;
value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
}else{
value;
}
——————
I now have the following Expression script in my X-rotation which is linked to the y-rotation on another layer –Delay = effect(“Pop-up Delay”)(“Slider”)/25;
Source = thisComp.layer(“Page 01”).transform.yRotation.valueAtTime(time-Delay);
ease(Source,0,180,-90,0)——————-
How do I get Inertial Bounce to work with my x-rotation script. Take note that I can’t apply the Inertial Bounce to the other layer’s y-rotation as that layer should not have the Inertial Bounce effect.
TIA
RoRKIntensive AE & Mocha Training in Asia.