1
0
mirror of synced 2025-01-19 01:14:08 +01:00

Fix Wii U textures extracted on exporting a model

This commit is contained in:
KillzXGaming 2019-03-23 15:20:53 -04:00
parent 0a53c287b3
commit a5a8ca10e5
6 changed files with 5 additions and 1 deletions

Binary file not shown.

View File

@ -445,7 +445,11 @@ namespace Bfres.Structs
if (bntx.Textures.ContainsKey(texref.Name))
textures.Add(bntx.Textures[texref.Name]);
}
foreach (var ftexCont in PluginRuntime.ftexContainers)
{
if (ftexCont.ResourceNodes.ContainsKey(texref.Name))
textures.Add((FTEX)ftexCont.ResourceNodes[texref.Name]);
}
}
}