-
Simple continuous movement
I’m working on an animation where the various video’s keep moving past the camera in a steady motion. But at some points the movement needs to stop. I figured this would be pretty doable with an expression in combination with a slider control to control the speed.
The code I initially got (below) didn’t have the slider control but it turns out this is a problem.
When I animate the slider from 0 to 150 it speeds up dramatically to a speed that looks more like 2000 and then when it passes the 150 keyframe it continues on at the intended 150 speedanyone have an idea of what’s causing this?
t=time*effect("Slider Control")("Slider");
x=value[0]-t;
y=288;
z=0;
[x,y,z];