Hello guys, I create a 3D CSS model in blender and assign it 2 material (white and blue) and when I import it in my scene, the texture doesn’t render I don’t know why.
This is how I load my models :
for(const source of this.sources)
{
if (source.type == 'gltfModel')
{
this.loaders.gltfLoader.load(
source.path,
(file =>
{
this.sourceLoaded(source, file)
})
)
}