-
Randomly move position of layer on Y within a range, hold for a few frames and move again
I found this code
Random position in a random amount of time and pause in this position for a random amount of time
moveMin = .3; //minimum move time
moveMax = .7; //maximum move timepauseMin = .1; // minimum pause time
pauseMax = .5; // maximum pause timeminVal = [0.1*thisComp.width, 0.1*thisComp.height];
maxVal = [0.9*thisComp.width, 0.9*thisComp.height];seedRandom(index,true); // set pre-run for endT
endT = - random(moveMax);j = 0;
k = 0;
while ( time >= endT){
j += 1;
seedRandom(j,true);
startT = endT;
if (j%2){
endT += random(moveMin,moveMax);
k++;
}else{
endT += random(pauseMin,pauseMax);
}
}
if (j%2){
seedRandom(k,true);
endVal = random(minVal,maxVal);
seedRandom(k-1,true);
startVal = random(minVal,maxVal);
ease(time,startT,endT,startVal,endVal)
}else{
seedRandom(k,true);
random(minVal,maxVal)
}
But just want this for the Y position of a layer only
Dan, can you help if you have a sec? Many Thanks