644d94090f
Added support for previewing layout animations. This includes pane SRT, tex SRT, material color (white/black blending), texture patterns, pane visibilty, and vertex colors. Added textbox previewing. The scaling will be off, and more features is planned (caching font data to disk for faster loading, improve rendering, etc). Rotations now render correctly for X/Y axis. Added game window preview. This removes any editor only drawn objects and also fits the layout to the screen (aka root pane) size. Add support for rendering custom blending with layout materials. Add support for loading character icons for mk8d. These are hardcoded and have been manually set. Note these will only load if within the menu.szs.
26 lines
551 B
C#
26 lines
551 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 Slope { get; set; }
|
|
public virtual float Frame { get; set; }
|
|
public virtual float Value { get; set; }
|
|
}
|
|
|
|
public class STHermiteKeyFrame : STKeyFrame
|
|
{
|
|
public float Slope { get; set; }
|
|
}
|
|
|
|
public class STLinearKeyFrame : STKeyFrame
|
|
{
|
|
public float Delta { get; set; }
|
|
}
|
|
}
|