Scale over time expression
I'm trying to have an element scale up and do so through an expression:
startScale = 100;
endScale = 300;
scaleUpTime = 5;
s = ease(time, inPoint, inPoint + scaleUpTime, startScale, endScale);
[s,s]
This works but I'd like to modify this is that the endScale is actually a random number between 100 and 300.
I'd also like the whole thing to trigger at a specific time (or frame).
I tried random(100,300) but it gives a jittery result not a constant scale up to a random value