-
Opacity semi-random issue
I have a displacement map I would like to flicker on and off randomly, however I would like it to be off more that on and only be on a few times rather than a majority.
Here’s what I came up with :
random(0,100);
if (thisComp.layer(“displace”).transform.opacity < 90) 0 else 100;It doesnt seem to randomize once I put all of this in…. any help would be appreciated. Also if there is a way that when it does switch “on” it stays on for maybe 10 frames I’d appreciate a hint on that! Thanks in advance for any help!
random(0,100);
if (thisComp.layer("displace").transform.opacity < 90) 0 else 100;