Bevy Flicker

This plugin facilitates creating a brief overlay/mix of a specific color over a sprite or mesh.

To trigger a flicker, you can send a FlickerStartEvent, which will contain the parameters that dictate the color, length, and strength of the flicker.

Included is also a RepeatingFlicker component that will send a FlickerStartEvent on an interval.

This also works on textures with alpha, the overlay takes into account the alpha of the underlying texture and will take the lowest alpha between the two. So if a texture has pixels with an alpha of 0.0 and the overlay color has an alpha of 0.3, then the overlay above those pixels will also have an alpha of 0.0.

See more, complete examples here

```rust use bevy_flicker::prelude::*;

fn tick(query: Query, mut eventwriter: EventWriter) { for e in query.iter() { eventwriter.send( FlickerStartEvent::builder(e) .withsecs(0.5) .withcolor(Color::rgba(0.0, 0.0, 1.0, 0.2)) .build(), ); } }

```