Allow .nut to batch export
This commit is contained in:
parent
f9ff362421
commit
5470ef95f4
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user