fix duplicated extract

This commit is contained in:
ousttrue
2021-03-10 14:57:50 +09:00
parent 07f2cd0221
commit e7c0762a69

View File

@@ -50,6 +50,11 @@ namespace UniGLTF
public void Extract(GetTextureParam param, bool hasUri)
{
if (Textures.Values.Contains(param))
{
return;
}
var subAsset = m_subAssets.FirstOrDefault(x => x.name == param.ConvertedName);
string targetPath = "";