terrain-forge 0.7.0

A modular procedural generation engine for terrain, dungeons, and maps
Documentation
1
2
3
4
5
6
7
8
9
//! Composition system for chaining and layering algorithms.
//!
//! Use `Pipeline` for sequential algorithm chains and `LayeredGenerator` for blends.

mod layer;
mod pipeline;

pub use layer::{BlendMode, LayeredGenerator};
pub use pipeline::Pipeline;