I am dealing with a simple swing expression tied to the x rotation. It starts immediately in the composition, but I’m trying to move it further into the comp. (Specifically, 4:08).
This has to be something really simple, and all over the internet, but apparently am not typing the right question.
I’ve toyed with some timeToStart commands, but they just end up cutting off the first portion of the animation and leaving everything after the timeToStart.
offset = 90;
swingMaxDistance = 100;
swingSpeed = 5;
easeTimeSpan = 2.5;
easeSpeed = 1;
easeVal = ease(time*easeSpeed, 0, easeTimeSpan, swingMaxDistance, 0);
Math.sin(time*swingSpeed) * easeVal;