COLLADA2GLTF
COLLADA2GLTF copied to clipboard
Change location of image URI during conversion
The current COLLADA2GLTF converter creates a texture image in the same folder where the glTF file is located (if the option to separate textures is not set). Is it possible to specify the URI of this image during conversion using command line? For instance, currently we have
"images": [
{
"uri": "texture.jpeg"
}
]
I'd like to change this to
"images": [
{
"uri": "../images/texture.jpeg"
}
]