bevy_fast_light 0.10.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
//! Modules for rendering composition.
//!
//! This composes the light map from [`MeshLightTextures`](crate::light::prelude::MeshLightTextures) to the screen texture.
//!
//! This is the fourth render stage of [`FastLightPlugin`](crate::prelude::FastLightPlugin).

mod node;
mod pipeline;
mod plugin;

pub(super) mod prelude {
    pub(super) use super::node::CompositeNode;
    pub(super) use super::pipeline::CompositePipeline;
    pub(crate) use super::plugin::{CompositeLabel, CompositePlugin};
}