gltf 0.3.1

glTF asset loader
Documentation

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.

Build Status Crates.io

Documentation

Usage

Add gltf to the dependencies section of Cargo.toml:

[dependencies]
gltf = "0.3"

Import the crate in your library or executable:

extern crate gltf;

use gltf::Gltf;

Load a glTF file:

fn main() {
    let gltf = Gltf::new("Foo.gltf").unwrap();
}

Future Goals

  • Ability to be compilied with the latest stable toolchain
  • Full conformance to the specification
  • Replace untyped GLenum identifiers with equivalent type-safe constants