bevy_feronia 0.8.2

Foliage/grass scattering tools and wind simulation shaders/materials that prioritize visual fidelity/artistic freedom, a declarative api and modularity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod bend;
pub mod color;
pub mod general;
pub mod geometry;
pub mod lighting;
pub mod wind;

pub mod prelude {
    pub use super::bend::*;
    pub use super::color::*;
    pub use super::general::*;
    pub use super::geometry::*;
    pub use super::lighting::*;
    pub use super::wind::*;
}