gltf
This library is intended to load glTF assets, a file format designed for the efficient transmission of 3D models. It requires rustc version 1.15 or above to compile.
Usage
Add gltf to the dependencies section of Cargo.toml:
[]
= "0.3"
Import the crate in your library or executable:
extern crate gltf;
use Gltf;
Load a glTF file:
Future Goals
- Ability to be compilied with the latest stable toolchain
- Full conformance to the specification
- Replace untyped
GLenumidentifiers with equivalent type-safe constants