2019-09-28 23:27:48 +02:00
|
|
|
|
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; }
|
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
public virtual float Slope { get; set; }
|
2019-09-28 23:27:48 +02:00
|
|
|
|
|
2019-10-05 19:25:28 +02:00
|
|
|
|
public virtual float Coef0 { get; set; }
|
|
|
|
|
public virtual float Coef1 { get; set; }
|
|
|
|
|
public virtual float Coef2 { get; set; }
|
|
|
|
|
public virtual float Coef3 { get; set; }
|
2019-09-28 23:27:48 +02:00
|
|
|
|
}
|
|
|
|
|
}
|