mocari 0.2.3

A pure Rust Live2D/Cubism-compatible runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![forbid(unsafe_code)]

pub mod assets;
pub mod core;
pub mod error;
pub mod expression;
pub mod json;
pub mod moc3;
pub mod motion;
pub mod render;
pub mod runtime;

pub use crate::core::{DrawableId, Id, ParameterId, PartId};
pub use crate::error::{Error, Result};
pub use crate::expression::{ExpressionManager, ExpressionPlayer};
pub use crate::motion::MotionPlayer;
pub use crate::runtime::{ModelRuntime, ParameterInfo};