docs.rs failed to build concinnity-engine-0.19.23
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
concinnity-engine-0.19.16
concinnity-engine
Runtime engine for Concinnity: the world loop, the ECS schedule, the renderer driver, audio, and physics.
This crate is what runs a compiled world. It loads .cnb blobs, steps
behavior, physics, and animation on a fixed timestep, and drives rendering
through a Box<dyn RenderBackend> from concinnity-device, never naming a
concrete backend. The GPU-free render-prep lives in concinnity-core's
render module.
Constraints
- Runtime only: depends on
concinnity-core,concinnity-host, andconcinnity-device. Noconcinnity-cook, no importers, no image decoders; a shipped game plays compiled blobs and never sees authored input. - The dev tooling (
concinnity-dev) drives this crate'sAppand renderer through the public API widened here; internals staypub(crate)unless the editor specifically needs them.
Most users want the concinnity
facade crate rather than this one.