startScale = 100;
endScale = 120;
startTime = 0;
endTime = thisComp.duration;
progress = linear(time, startTime, endTime, startScale, endScale);
[progress, progress];
Gradually increases or decreases a layer’s scale from the start to the end of the comp. It works automatically over the full timeline.
Contributed by:
Ideal for looping animations, slow zoom effects, or background scaling.