pogress on rotation / mirror
This commit is contained in:
parent
08641c7174
commit
8ee0e43528
@ -68,6 +68,10 @@ namespace SpriteLibrary
|
|||||||
myToolTip.AutoPopDelay = 5000;
|
myToolTip.AutoPopDelay = 5000;
|
||||||
myToolTip.AutomaticDelay = 500;
|
myToolTip.AutomaticDelay = 500;
|
||||||
|
|
||||||
|
rbFromImage.Click += UpdateMenuClick;
|
||||||
|
rbMirror.Click += UpdateMenuClick;
|
||||||
|
rbRotation.Click += UpdateMenuClick;
|
||||||
|
|
||||||
PopulateMenu();
|
PopulateMenu();
|
||||||
UpdateMenu();
|
UpdateMenu();
|
||||||
SpriteInformationToForm();
|
SpriteInformationToForm();
|
||||||
@ -164,6 +168,11 @@ namespace SpriteLibrary
|
|||||||
ResumeLayout();
|
ResumeLayout();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void UpdateMenuClick(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
UpdateMenu();
|
||||||
|
}
|
||||||
|
|
||||||
private void UpdateChosenAreaLabel()
|
private void UpdateChosenAreaLabel()
|
||||||
{
|
{
|
||||||
lblChosenArea.Text = ChosenArea.X + "," + ChosenArea.Y + "," + ChosenArea.Width + "," + ChosenArea.Height;
|
lblChosenArea.Text = ChosenArea.X + "," + ChosenArea.Y + "," + ChosenArea.Width + "," + ChosenArea.Height;
|
||||||
@ -284,6 +293,7 @@ namespace SpriteLibrary
|
|||||||
TempInformation.Animations.Add(new AnimationInfo());
|
TempInformation.Animations.Add(new AnimationInfo());
|
||||||
AI = TempInformation.Animations[CurrentSIAnimation];
|
AI = TempInformation.Animations[CurrentSIAnimation];
|
||||||
tbAmimationSpeed.Text = AI.AnimSpeed.ToString();
|
tbAmimationSpeed.Text = AI.AnimSpeed.ToString();
|
||||||
|
tbRotation.Text = AI.RotationDegrees.ToString();
|
||||||
cbStartingImage.Text = AI.ImageName;
|
cbStartingImage.Text = AI.ImageName;
|
||||||
cbMirrorH.Checked = AI.MirrorHorizontally;
|
cbMirrorH.Checked = AI.MirrorHorizontally;
|
||||||
cbMirrorV.Checked = AI.MirrorVertically;
|
cbMirrorV.Checked = AI.MirrorVertically;
|
||||||
@ -324,6 +334,8 @@ namespace SpriteLibrary
|
|||||||
AI.MirrorHorizontally = cbMirrorH.Checked;
|
AI.MirrorHorizontally = cbMirrorH.Checked;
|
||||||
AI.MirrorVertically = cbMirrorV.Checked;
|
AI.MirrorVertically = cbMirrorV.Checked;
|
||||||
|
|
||||||
|
int.TryParse(tbRotation.Text, out AI.RotationDegrees);
|
||||||
|
|
||||||
int.TryParse(cbAnimation.Text, out AI.AnimationToUse);
|
int.TryParse(cbAnimation.Text, out AI.AnimationToUse);
|
||||||
int.TryParse(tbNumFrames.Text, out AI.NumFrames);
|
int.TryParse(tbNumFrames.Text, out AI.NumFrames);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user