KhronosGroup / COLLADA2GLTF

COLLADA to glTF converter
Other
532 stars 156 forks source link

Converting GLTF to Collada? #296

Closed vovchykbratyk closed 1 year ago

vovchykbratyk commented 1 year ago

Probably an enhancement request - but does Khronos have a best practice for converting from GLTF/GLB to Collada?

javagl commented 1 year ago

A common way should be to load the model e.g. in Blender, and export it as COLLADA from there. But it's an unusal task in many ways, so I doubt there is a dedicated command line tool for that. (One could probably build something similar to https://github.com/KhronosGroup/glTF-Tutorials/tree/master/BlenderGltfConverter ...)

vovchykbratyk commented 1 year ago

Thanks. That's what I'm doing currently. Understand it's an edge case, and what I was planning on doing is using the Blender python API to script it out. Just wasn't sure if there was a more dedicated solution.