scena 1.7.2

A Rust-native scene-graph renderer with typed scene state, glTF assets, and explicit prepare/render lifecycles.
Documentation
mod animations;
mod cameras;
mod common;
mod deformations;
mod extras;
mod fonts;
mod geometry;
mod lights;
mod materials;
mod nodes;
mod particles;
mod transform;

pub(super) use animations::build_authored_animations;
pub(super) use cameras::build_authored_cameras;
pub(super) use common::{DiagnosticPathExt, authored_color};
pub(super) use deformations::{build_authored_morphs, build_authored_skins};
pub(super) use extras::{
    InstanceSetResources, LabelResources, build_authored_clipping_planes,
    build_authored_instance_sets, build_authored_labels,
};
pub(super) use fonts::build_authored_fonts;
pub(super) use geometry::build_authored_geometries;
pub(super) use lights::build_authored_lights;
pub(super) use materials::{AuthoredMaterialResources, build_authored_materials};
pub(super) use nodes::{AuthoredNodeResources, build_authored_nodes};
pub(super) use particles::{ParticleSetResources, build_authored_particle_sets};