1
2
3
4
5
6
7
8
9
10
11
12
pub mod control;
pub mod deformer;
pub mod skeleton;

use crate::mesh::rig::{control::RigControl, deformer::Deformer, skeleton::Skeleton};

#[derive(Debug, Default, Clone)]
pub struct Rig {
    pub skeleton: Skeleton,
    pub deformer: Deformer,
    pub controls: Vec<RigControl>,
}