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.
Add gltf
to the dependencies section of Cargo.toml
:
toml
[dependencies]
gltf = "0.3"
Import the crate in your library or executable:
```rust extern crate gltf;
use gltf::Gltf; ```
Load a glTF file:
rust
fn main() {
let gltf = Gltf::new("Foo.gltf").unwrap();
}
GLenum
identifiers with equivalent type-safe constants