-
Is there a better way?
Evening peoples,
Out of boredom, I’ve been exploring a way to change the length of an animation (likely for mograph templates) while maintaining my graph curves.
I’ve got the below working, I’m just curious if anyone has a better way, or if I’m missing something obvious.
Basically for the sake of the example, the animation takes 1 second to complete, and I’d change a slider value for the time I want said animation to take . (ie 1 for 1 second, 2 for seconds etc).
So on my animated properties I have this;
v = effect(“seconds”)(“Slider”);
valueAtTime(v);And with the slider being what I would change in Pr, I have this;
v = value;
linear(time,0,v,0,1)So yeah, it works. I’m just curious what the actually intelligent minds come up with.