fbxcel 0.9.0

Excellent FBX library
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Node attribute loaders.

pub use self::{
    direct::DirectLoader,
    single::{ArrayLoader, BinaryLoader, PrimitiveLoader, StringLoader},
    type_::TypeLoader,
};

mod direct;
mod single;
mod type_;