fbxcel 0.9.0

Excellent FBX library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Parser-related stuff for FBX 7.4 or later.
//!
//! To see how to setup a parser, see module documentation of [`pull_parser`][`super`].

pub(crate) use self::read::{FromParser, FromReader};
pub use self::{
    attribute::{Attributes, LoadAttribute},
    event::{Event, StartNode},
    parser::Parser,
};

pub mod attribute;
mod event;
mod parser;
mod read;