Horizontal Judder Script?
I found a script that automatically VERTICALLY moves text up and you can set the speed in whole number intervals and it removes vertical judder. How can I adjust this script to make text scroll to the left horizontally?
rate = 2; //value in px/sec.
if (marker.numKeys > 0){
if (time > marker.key(1).time){
value - [0,rate*timeToFrames(time-marker.key(1).time)];
}else{
value;
}
}else{
value - [0,rate*timeToFrames(time-inPoint)];
}
Basically:
I have a bunch of horizontal scrolling text. Several layers that need to animate at the same speed. I've used two keyframes and then the expression loopOut("continue") in order to keep the speed consistent between all my text layers. I know that isn't best practice, but it works. I am using a bold text on a black background. It is taking up most of the screen. The text is moving pretty slowly.
I am now running into horizontal judder / stutter of that text. It takes about 56 seconds to scroll all the text.
I am familair with the technique of adding motion blur to the text and the need to move things in whole numbers per frame. Maybe there's another solution out there?
