fbxcel 0.9.0

Excellent FBX library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Low-level or primitive data types for FBX 7.4 and compatible versions.

pub use self::{
    array_attribute::ArrayAttributeEncoding,
    attribute::{type_::AttributeType, value::AttributeValue},
    fbx_footer::FbxFooter,
};
pub(crate) use self::{
    array_attribute::ArrayAttributeHeader, node_header::NodeHeader,
    special_attribute::SpecialAttributeHeader,
};

mod array_attribute;
mod attribute;
mod fbx_footer;
mod node_header;
mod special_attribute;