gltf
This crate is intended to load glTF 2.0, a file format designed for the efficient transmission of 3D assets.
rustc version 1.32 or above is required.
Reference infographic
From javagl/gltfOverview.
Usage
See the crate documentation for example usage.
Extras and Names
By default, gltf ignores all extras and names included with glTF assets. You can negate this by enabling the extras and names features, respectively.
[dependencies.gltf]
version = "0.13"
features = ["extras", "names"]Examples
gltf-display
Demonstrates how the glTF JSON is deserialized.
cargo run --example gltf-display path/to/asset.gltfgltf-export
Demonstrates how glTF JSON can be built and exported using the gltf-json crate.
cargo run --example gltf-exportgltf-roundtrip
Deserializes and serializes the JSON part of a glTF asset.
cargo run --example gltf-roundtrip path/to/asset.gltfgltf-tree
Visualises the scene heirarchy of a glTF asset, which is a strict tree of nodes.
cargo run --example gltf-tree path/to/asset.gltf