diff --git a/source/import/importerutils.js b/source/import/importerutils.js index 580bdda..b50395a 100644 --- a/source/import/importerutils.js +++ b/source/import/importerutils.js @@ -76,10 +76,5 @@ OV.UpdateMaterialTransparency = function (material) material.transparent = false; if (OV.IsLower (material.opacity, 1.0)) { material.transparent = true; - } else if (material.diffuseMap !== null) { - let extension = OV.GetFileExtension (material.diffuseMap.name); - if (extension === 'png') { - material.transparent = true; - } } };