reflow_components 0.2.1

Standard component catalog for Reflow — procedural, media, GPU, animation, I/O, and stream actors.
Documentation
//! Procedural generation actors: noise, heightmaps, terrain, Voronoi, L-systems, particles, textures.

mod heightmap;
mod lsystem;
mod mesh;
mod mesh_combine;
mod noise;
mod particle;
mod texture;
mod tube_mesh;
mod vertex_color;
mod voronoi;

pub use heightmap::{HeightmapToImageActor, ImageToHeightmapActor};
pub use lsystem::LSystemActor;
pub use mesh::HeightmapToMeshActor;
pub use mesh_combine::MeshCombineActor;
pub use noise::NoiseGeneratorActor;
pub use particle::ParticleEmitterActor;
pub use texture::{TriplanarTextureActor, UVTextureActor};
pub use tube_mesh::TubeMeshActor;
pub use vertex_color::VertexColorActor;
pub use voronoi::VoronoiActor;

pub(crate) use texture::{
    attach_display_components, display_catalog_entries, display_component_sources,
};