bevy_fast_light 0.2.2

Simple 2D lighting for Bevy focused on performance over features.
Documentation
/*
 * File: lib.rs
 * Author: Leopold Johannes Meinel (leo@meinel.dev)
 * -----
 * Copyright (c) 2026 Leopold Johannes Meinel & contributors
 * SPDX ID: Apache-2.0
 * URL: https://www.apache.org/licenses/LICENSE-2.0
 */

//! Simple 2D lighting for Bevy focused on performance over features.

mod light;
mod log;
mod occluder;
mod plugin;

pub mod prelude {
    pub use crate::light::{ambient_light::AmbientLight2d, point_light::PointLight2d};
    pub use crate::plugin::FastLightPlugin;
}