A collection of shaders for Bevy ðŸ’
It includes only 3 shaders now. Sorry, but this is temporary because it's just created />~<\

Installation
This crate is published on crates.io, so you can just type cargo add bevy_shaders
Examples
Step 1: Enable ShadersPlugin plugin.
use *;
use *;
Step 2: Add a material you want. Availiable materials:
Text Shader
Only GPU-side rendred text, you don't have to render founts to texture and pass it to the shader. For light effect like here it uses emission, so don't forget to enable bloom shader.

Run this example using cargo run --example text and see the source code at /examples/text.
Blinking Led Shader
Randomly blinking led material. With it you don't have to make an animation for this effect.

Run this example using cargo run --example blinking_led and see the source code at /examples/blinking_led.
Under dual MIT and Apache-2.0 licenses, you can choose which one is more comfortable for you.