| Crates.io | goth-gltf |
| lib.rs | goth-gltf |
| version | 0.1.1 |
| created_at | 2023-07-03 03:53:16.713127+00 |
| updated_at | 2023-07-03 04:01:14.08236+00 |
| description | A lightweight, low-level reader for gltf (and glb) files |
| homepage | |
| repository | https://github.com/expenses/goth-gltf/ |
| max_upload_size | |
| id | 906634 |
| size | 56,724 |
Goth-gltf aims to be a low-level, unopinionated reader for gltf files.
Basic example:
let filename = std::env::args().nth(1).unwrap();
let bytes = std::fs::read(&filename).unwrap();
let (gltf, _): (
goth_gltf::Gltf<goth_gltf::default_extensions::Extensions>,
_,
) = goth_gltf::Gltf::from_bytes(&bytes).unwrap();
println!("{:#?}", gltf);
KHR_lights_punctualKHR_materials_emissive_strengthKHR_materials_iorKHR_materials_sheenKHR_materials_unlitKHR_texture_basisuKHR_texture_transformEXT_mesh_gpu_instancingEXT_meshopt_compressionMSFT_lodMSFT_screencoverageLicense: MIT