-
random rotation ease?
So I had cobbled together this expression to start a random rotation between two parameters (degrees) to start after a specific time.
minDegrees = -36;
maxDegrees = 15;
timeToStart = 21.5;if (time > timeToStart){
random (minDegrees,maxDegrees)
}else{
value;
}
Since (as I understand it) the randomness takes place between every frame, it happens really quickly. How could I slow down the randomness, “ease” between the random values. In essence, instead of it happening every frame, how about every 2 or 3 frames?
Thanks.
Julius Caesar and the Roman Empire couldn’t conquer the blue sky.