1
0
mirror of synced 2024-11-12 02:00:50 +01:00

Allow .nut to batch export

This commit is contained in:
KillzXGaming 2020-02-01 21:01:40 -05:00
parent f9ff362421
commit 5470ef95f4

View File

@ -13,7 +13,7 @@ using Syroot.NintenTools.Bfres.GX2;
namespace FirstPlugin
{
public class NUT : TreeNodeFile, IFileFormat
public class NUT : TreeNodeFile, IFileFormat, ITextureContainer
{
public FileType FileType { get; set; } = FileType.Image;
@ -37,6 +37,21 @@ namespace FirstPlugin
}
}
public bool DisplayIcons => true;
public List<STGenericTexture> TextureList
{
get
{
List<STGenericTexture> textures = new List<STGenericTexture>();
foreach (STGenericTexture node in Nodes)
textures.Add(node);
return textures;
}
set { }
}
public Type[] Types
{
get