bevy_fast_light 0.8.0

Simple 2D lighting for Bevy focused on performance over features.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Simple 2D lighting for Bevy focused on performance over features.

mod light;
mod occluder;
mod plugin;
mod sprite_depth;
mod utils;

pub mod prelude {
    pub use crate::light::{AmbientLight2d, MeshLight2d};
    pub use crate::occluder::MeshOccluder2d;
    pub use crate::plugin::FastLightPlugin;
}