mocari 0.2.8

A pure Rust Live2D/Cubism-compatible runtime
Documentation
1
2
3
4
5
6
7
8
9
10
//! Renderer-facing helpers.
//!
//! The [`crate::render::common`] module is backend-neutral and can be used with
//! any graphics API. Enable the `wgpu` feature to use Mocari's built-in `wgpu`
//! backend.

pub mod common;

#[cfg(feature = "wgpu")]
pub mod wgpu;