awsm 0.0.11

Wrappers for WASM
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub struct Skin {
    pub gltf_index: Option<usize>,
    pub skeleton_root_index: Option<usize>,
    pub joints: Vec<SkinJoint>,
    pub skin_matrices: Option<Vec<u32>>,
}

pub struct SkinJoint {
    pub gltf_node_index: usize,
    pub inverse_bind_matrix: [f32;16]
}