-
Ranomize The End
I’ve preformed a search and if this has already been addressed, it would be greatly appreciated if I could be pointed in the direction. What I’m attempting to do is randomize the end of a given animation. For instance if I have opacity 0-100 when I duplicate the layer, the duplicate could be 90, 98, 73, etc…. I thought i could do this with an if statement, but the way that I implemented it failed so after some thought I gave the linear expression which got me close but I would still like to maintain the ability to keyframe the parameter.
So is it possible, am I on the right track, where did I go wrong?Linear expression:
linear(time,1,2,100,(75,95)if/else statement:
x = transform.opacity;if (x == 100){
seedRandom(45,true)
random(25,85)
}else{
value
}