Is it possible to add more than one texture sampler as a diffuse channel?

hi
I am exporting my scene to gltf.
For each material, I can add a diffuse map.
for Example:

      "name": "material",
      "pbrMetallicRoughness": {
        "baseColorTexture": {
          **"index": 0**
        },
        "metallicFactor": 0
      }

my viewer (babylonjs) is rendering this texture as a diffuse.
but i want to add more diffuse layers. using transparenncy i am expecting my viewer to blend the textures.
is it possible? do gltf support it? is there is any extension for it?

I’m not aware of a glTF extension that can do this, but this seems like a very custom requirement. It shouldn’t be too hard to add a custom glTF extension (or use extras) and a custom glTF loader extension in Babylon.js to do this.

Thanks.
I am trying to avoid using custom entries to enable any standart gltf viewer to import my glTF files.
But it looks like i have no other choice.

This topic was automatically closed 183 days after the last reply. New replies are no longer allowed.