Help: Make Cop Light Overlays Flash

I’m trying to use the blue and red overlay cop lights, but want to make it look like they’re flashing. Does anyone have a code for this that doesn’t involve the light effects? Thank you in advance.

1 Like

You have to use and change their opacity.

This is for the beginning of the scene:

[BACKGROUND] with BLUE COP LIGHT with RED COP LIGHT
@overlay BLUE COP LIGHT opacity 0 in 0 and overlay RED COP LIGHT opacity 0 in 0

Then this is the part that makes them flash, change the loop time x to however many times you want it to loop. Type in INFINITE if you want it to continuous loop.

&overlay BLUE COP LIGHT opacity 1 in 0.5 THEN overlay BLUE COP LIGHT opacity 0 in 0.5 loop x times
&overlay RED COP LIGHT opacity 0 in 0.5 THEN overlay RED COP LIGHT opacity 1 in 0.5 loop x times

26 Likes

Thank you so much, you’re a life saver :blush: