bevy_pbr/decal/mod.rs
1//! Decal rendering.
2//!
3//! Decals are a material that render on top of the surface that they're placed above.
4//! They can be used to render signs, paint, snow, impact craters, and other effects on top of surfaces.
5
6// TODO: Once other decal types are added, write a paragraph comparing the different types in the module docs.
7
8pub mod clustered;
9mod forward;
10
11pub use forward::*;