-
How can I randomize a linear expression?
How can I make this expression below start its thing after the 4 second mark but with a few random frames of difference on each layer?
I’m using the index to add some variation, but as the index number grows the output decreases and it does not look ok.m=thisComp.layer("NULL CONTROL 2").effect("mult")("Slider");
t=time;
if
(t<4)
{
100}
else
linear(t,4/(index/m),5,100,0)
;