-
Random opacity
Hi
i have x numbers of layers.All layers should have either 0 or 100% opacity.
I would like them to blink randomly and not all at the same time.
When i use this expression =>
period = .25;
if (Math.floor(time/period)%2) 0 else 100they blink all at the same time.Yes i could change the value for every layer but i would like to automate this.
Layer 1 starts to blink at frame 10,layer 2 after 1sec….