glTF 2.0 loader
This crate is intended to load glTF 2.0, a file format designed for the efficient runtime transmission of 3D scenes. The crate aims to provide rustic utilities that make working with glTF simple and intuitive.
Installation
Add gltf version 0.6 to your Cargo.toml.
[]
= "0.6"
Examples
Loading glTF from the file system
The crate provides a from_path method whereby one can import glTF from the
system.
extern crate gltf;
An Import resolves to Gltf, a data structure that provides helpful utilities
such as iterators for working with glTF.
Walking the node hierarchy
Below demonstates visiting the root Nodes of every Scene, printing the
number of children each node has.
#
#