1
0
mirror of synced 2024-11-28 17:30:57 +01:00

Load the texture rather than the bntx for easier previewing

This commit is contained in:
KillzXGaming 2019-06-29 16:46:09 -04:00
parent 7fb13a1a22
commit 53d5f3aafd
2 changed files with 5 additions and 1 deletions

Binary file not shown.

View File

@ -228,7 +228,11 @@ namespace FirstPlugin
}
foreach (var container in Containers)
bntx.Nodes.Add(container);
{
foreach (var texture in container.Textures.Values)
bntx.Nodes.Add(texture);
}
IsLoadingArray = false;
}