No description
Find a file
2022-10-30 04:31:13 +09:00
examples Provide inherent methods to create parsers instead of free functions 2022-10-30 04:28:49 +09:00
src Provide inherent methods to create parsers instead of free functions 2022-10-30 04:28:49 +09:00
tests Provide inherent methods to create parsers instead of free functions 2022-10-30 04:28:49 +09:00
.editorconfig Add basic files 2018-11-16 18:01:03 +09:00
.gitignore Add basic files 2018-11-16 18:01:03 +09:00
.travis.yml Bump MSRV to 1.52 2021-05-07 07:51:38 +09:00
Cargo.toml Bump version to v0.9.0 2022-10-30 04:30:46 +09:00
CHANGELOG.md Bump version to v0.9.0 2022-10-30 04:30:46 +09:00
LICENSE-APACHE.txt Add basic files 2018-11-16 18:01:03 +09:00
LICENSE-MIT.txt Update LICENCE year 2019-03-23 19:33:39 +09:00
README.md Bump MSRV to 1.56.0 2022-06-23 01:24:50 +09:00

fbxcel

Build Status Latest version Documentation Minimum rustc version: 1.56

fbxcel is an FBX library for Rust programming language.

fbxcel is relatively low-level library. If you want to interpret and render FBX data, use fbxcel-dom crate.

Features

  • Pull parser for FBX binary (pull_parser module)
    • FBX 7.4 and 7.5 is explicitly supported.
  • Writer for FBX binary (writer module)
    • FBX 7.4 and 7.5 is explicitly supported.
    • This is optional and enabled by writer feature.
  • Types and functions for low-level FBX tree access
    • This is optional and enabled by tree feature.
    • Provides arena-based tree type and read-only access to nodes.

FBX versions

  • FBX 6 or below is not supported.
  • FBX 7.0 to 7.3 is not explicitly supported, but you can try FBX 7.4 feature to load them.
  • FBX 7.4 and 7.5 is supported.

FBX format

Only FBX binary format is supported.

Currently there is no plan to support FBX ASCII format.

Rust version

Latest stable compiler (currently 1.52) is supported.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.