using pyassimp to convert a obj model to gltf2.0,
pyassimp.export(scene,'444.gltf','gltf')
but export gltf version is 1.0
"asset": {
"version": "1",
"generator": "Open Asset Import Library (assimp v4.0.0)"
},
how to export gltf to version 2.0? thanks
Citing the docstring for pyassimp's export function:
In your case, this means you should call the function with the
file_type
gltf2, like so: