Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_pbr/src/decal/mod.rs
6600 views
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
8
pub mod clustered;
9
mod forward;
10
11
pub use forward::*;
12
13