glTF-Transform-View
glTF-Transform-View copied to clipboard
Syncs a glTF-Transform Document with a three.js scene graph.
**P0:** - [x] KHR_draco_mesh_compression - [x] KHR_mesh_quantization - [x] KHR_materials_clearcoat - [x] KHR_materials_ior - [x] KHR_materials_sheen - [x] KHR_materials_specular - [x] KHR_materials_transmission - [x] KHR_materials_volume - [x] KHR_materials_unlit - [x]...
WIP support for animation clips. - fixes #11
Remaining: - [x] SkinnedMesh - [ ] triangle fan - [ ] triangle strip
Currently the bindings ignore animation. Proposed API: ```ts const documentView = new DocumentView(document); const animationDef = document.getRoot().listAnimations()[0]; const animation = documentView.view(animationDef); // THREE.AnimationClip ``` Will need to decide how to...