Switch-Toolbox/File_Format_Library/FileFormats/BMD/BMDShapeWrapper.cs

52 lines
1.3 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using Toolbox.Library;
using Toolbox.Library.IO;
using Toolbox.Library.Rendering;
using Toolbox.Library.Forms;
using SuperBMDLib.Geometry;
namespace FirstPlugin
{
2019-07-11 23:38:29 +00:00
public class BMDShapeWrapper : GenericRenderedObject
{
2019-07-11 23:38:29 +00:00
SuperBMDLib.Model ParentModel;
Shape BMDShape;
2019-07-11 23:38:29 +00:00
private STGenericMaterial material;
2019-07-12 00:23:47 +00:00
public BMDShapeWrapper(Shape shape, SuperBMDLib.Model model, BMDMaterialWrapper mat)
{
BMDShape = shape;
2019-07-11 23:38:29 +00:00
ParentModel = model;
2019-07-12 00:23:47 +00:00
material = mat;
2019-07-11 23:38:29 +00:00
}
public override STGenericMaterial GetMaterial()
{
return material;
}
2019-07-12 19:28:14 +00:00
public void SetMaterial(STGenericMaterial mat)
{
material = mat;
}
public override void OnClick(TreeView treeView)
{
STPropertyGrid editor = (STPropertyGrid)LibraryGUI.GetActiveContent(typeof(STPropertyGrid));
if (editor == null)
{
editor = new STPropertyGrid();
LibraryGUI.LoadEditor(editor);
}
editor.Text = Text;
editor.Dock = DockStyle.Fill;
editor.LoadProperty(BMDShape, null);
}
}
}