bevy_fast_light 0.9.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
14
15
//! Simple 2D lighting for Bevy focused on performance over features.

mod composite;
mod extract;
mod light;
mod occluder;
mod plugin;
mod sprite_depth;
mod utils;

pub mod prelude {
    pub use crate::light::{AmbientLight2d, MeshLight};
    pub use crate::occluder::MeshOccluder;
    pub use crate::plugin::FastLightPlugin;
}