1
0
mirror of synced 2024-11-14 19:17:39 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Animations/BooleanKeyFrame.cs

25 lines
496 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library.Animations
{
public class BooleanKeyFrame
{
public InterpolationType InterType = InterpolationType.STEPBOOL;
public bool Visible;
public bool IsKeyed = false;
public float Frame
{
get { return _frame; }
set { _frame = value; }
}
private float _frame;
}
}