COLLADA2GLTF icon indicating copy to clipboard operation
COLLADA2GLTF copied to clipboard

Change location of image URI during conversion

Open Son-HNguyen opened this issue 5 years ago • 0 comments

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"
        }
    ]

Son-HNguyen avatar Sep 22 '20 14:09 Son-HNguyen