https://github.com/lo48576/fbxcel
Excellent low-level FBX parser for Rust
https://github.com/lo48576/fbxcel
fbx rust
Last synced: 3 months ago
JSON representation
Excellent low-level FBX parser for Rust
- Host: GitHub
- URL: https://github.com/lo48576/fbxcel
- Owner: lo48576
- License: apache-2.0
- Created: 2018-11-21T09:30:58.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2024-12-26T13:16:14.000Z (over 1 year ago)
- Last Synced: 2026-01-02T10:52:31.487Z (6 months ago)
- Topics: fbx, rust
- Language: Rust
- Homepage:
- Size: 678 KB
- Stars: 91
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE-APACHE.txt
Awesome Lists containing this project
README
# fbxcel
[](https://travis-ci.com/lo48576/fbxcel)
[](https://crates.io/crates/fbxcel)
[](https://docs.rs/fbxcel)

`fbxcel` is an FBX library for Rust programming language.
`fbxcel` is relatively low-level library.
If you want to interpret and render FBX data, you need another library or need to do it yourself.
([`fbxcel-dom`](https://github.com/lo48576/fbxcel-dom) is incomplete and currently unmaintained,
but it can help you know what kind of tasks are needed to interpret FBX data.)
## 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.
### 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
* Apache License, Version 2.0, ([LICENSE-APACHE.txt](LICENSE-APACHE.txt) or
)
* MIT license ([LICENSE-MIT.txt](LICENSE-MIT.txt) or
)
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.