-
Control speed with expressions (slow down/speed up)
Basically, X will be going the rate of time. The slider keyframes will control speed or ramp up and ramp down.
[the slider] has two keyframes; 100 and 1.
the position of the solid is this:
x=(time * 100)
y=transform.position[1];
p=effect("Slider Control")("Slider");
[x/p,y]There is a nice ease in but then it jumps the second it hits keyframe 1 on the slider. What is a good expression to control the speed of a constantly moving object? Does that make sense?
The animation is a large plane moving at the speed of time and I’d like to control the start and stop, as this large plane will loop in a cycle. Hence the reason for controlling “speed.” It doesn’t have to stop, but pretty close.

