Hi there!
I'm using an expression by Dan Ebberts, thanks Dan!
This expression works great, but the problem is that It's not a loop.
I need to do a loop to 4500 f. I try to use time % loopTime, but it doesn't work.
Does anyone have any idea how to do this?
Thanks!
Expressionbelow:segMin = .3; //minimum segment duration
segMax = .7; //maximum segment duration
minVal = 10;
maxVal = 100;
end = 0;
j = 0;
while ( time >= end){
j += 1;
seedRandom(j,true);
start = end;
end += random(segMin,segMax);
}
endVal = random(minVal,maxVal);
seedRandom(j-1,true);
dummy=random(); //this is a throw-away value
startVal = random(minVal,maxVal);
ease(time,start,end,startVal,endVal)