1
0
mirror of synced 2024-12-01 02:27:22 +01:00

Add batch exporting textures for some additional formats

This commit is contained in:
KillzXGaming 2020-04-11 10:23:39 -04:00
parent 9c138bd590
commit 2088200479

View File

@ -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<STGenericTexture> TextureList
{
get { return Textures; }
set { }
}
public class FileSettings
{
private H3D H3DFile;