a8e6d104f2
Panes can now be selected and moved around. Panes can be resized from corners or edges. Improved hit detection for panes. Mouse left click now selects and moves panes. Use middle mouse or hold shift + left mouse to pan/move camera. More progress on timeline, but currently not functional so currently disabled atm. Multiple layout animations can be selected and played at once. Goes to the highest amount of frames. Start to impliment a parts manager. Will allow editing external layout and animation data, and saving back properly.
22 lines
546 B
C#
22 lines
546 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Toolbox.Library.Animations
|
|
{
|
|
public class STKeyFrame
|
|
{
|
|
public virtual float Frame { get; set; }
|
|
public virtual float Value { get; set; }
|
|
|
|
public virtual float Slope { get; set; }
|
|
|
|
public virtual float Coef0 { get; set; }
|
|
public virtual float Coef1 { get; set; }
|
|
public virtual float Coef2 { get; set; }
|
|
public virtual float Coef3 { get; set; }
|
|
}
|
|
}
|