bevy_light_2d 0.2.1

General purpose 2d lighting for the Bevy game engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![deny(missing_docs)]
#![doc = include_str!("../README.md")]

pub mod light;
pub mod plugin;
mod render;

/// A module which exports commonly used dependencies.
pub mod prelude {
    pub use crate::light::{AmbientLight2d, PointLight2d, PointLight2dBundle};
    pub use crate::plugin::Light2dPlugin;
}