From 2088200479e5543fd1c7c6bfff85482b93790de6 Mon Sep 17 00:00:00 2001 From: KillzXGaming Date: Sat, 11 Apr 2020 10:23:39 -0400 Subject: [PATCH] Add batch exporting textures for some additional formats --- File_Format_Library/FileFormats/BCH/BCH.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/File_Format_Library/FileFormats/BCH/BCH.cs b/File_Format_Library/FileFormats/BCH/BCH.cs index 7f7bb8a6..7b24baae 100644 --- a/File_Format_Library/FileFormats/BCH/BCH.cs +++ b/File_Format_Library/FileFormats/BCH/BCH.cs @@ -21,7 +21,7 @@ using SPICA.WinForms.Formats; namespace FirstPlugin.CtrLibrary { - public class BCH : TreeNodeFile, IContextMenuNode, IFileFormat + public class BCH : TreeNodeFile, IContextMenuNode, IFileFormat, ITextureContainer { public FileType FileType { get; set; } = FileType.Model; @@ -58,6 +58,14 @@ namespace FirstPlugin.CtrLibrary propertyGrid.LoadProperty(new FileSettings(H3DFile)); } + public bool DisplayIcons => true; + + public List TextureList + { + get { return Textures; } + set { } + } + public class FileSettings { private H3D H3DFile;