mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-29 17:46:13 +00:00
43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using System;
|
|
using MetroFramework.Forms;
|
|
using System.Windows.Forms;
|
|
|
|
namespace PckStudio.Forms.Additional_Popups.Animation
|
|
{
|
|
public partial class FrameEditor : MetroForm
|
|
{
|
|
public int FrameTextureIndex => FrameList.SelectedNode.Index;
|
|
public int FrameTime => (int)FrameTimeUpDown.Value;
|
|
|
|
public FrameEditor(ImageList texList)
|
|
{
|
|
InitializeComponent();
|
|
FrameList.ImageList = texList;
|
|
for (int index = 0; index < texList.Images.Count; index++)
|
|
{
|
|
TreeNode frame = new TreeNode($"Frame {index}", index, index);
|
|
FrameList.Nodes.Add(frame);
|
|
}
|
|
}
|
|
|
|
public FrameEditor(int frameTime, int frameTextureIndex, ImageList texList) : this(texList)
|
|
{
|
|
FrameList.SelectedNode = FrameList.Nodes[frameTextureIndex];
|
|
FrameList.SelectedNode.EnsureVisible();
|
|
FrameTimeUpDown.Value = frameTime;
|
|
}
|
|
|
|
private void SaveBtn_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.OK;
|
|
Close();
|
|
}
|
|
|
|
private void CancelBtn_Click(object sender, EventArgs e)
|
|
{
|
|
DialogResult = DialogResult.Cancel;
|
|
Close();
|
|
}
|
|
}
|
|
}
|