-
Rotation Decay Auto with Ease In on Inpoint ??
The expression below work perfectly but does anyone know how to add an Ease in to this?
Thanks
freq = 3;
amplitude = 50;
decay = 6;
if (time >= inPoint){
amplitude*Math.sin(freq*time*2*Math.PI)/Math.exp(decay*(time-inPoint))
}
else{value}