diff options
Diffstat (limited to 'NW4RTools/Models/Animation/Shared.cs')
-rw-r--r-- | NW4RTools/Models/Animation/Shared.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/NW4RTools/Models/Animation/Shared.cs b/NW4RTools/Models/Animation/Shared.cs new file mode 100644 index 0000000..f87bea6 --- /dev/null +++ b/NW4RTools/Models/Animation/Shared.cs @@ -0,0 +1,32 @@ +using System; + +namespace NW4RTools.Models.Animation { + public struct Keyframe { + public float Frame, Value, Slope; + } + + public struct KeyframeAnim { + public bool IsConstant; + + public float ConstValue; + + public Keyframe[] Keyframes; + + // Only valid sometimes + // This sucks but I'm not sure how else to do it atm + public float BaseValue, Multiplier; + public int[] Values; + public float[] FloatValues; + + public KeyframeAnim(float cv) { + IsConstant = true; + ConstValue = cv; + + Keyframes = null; + + BaseValue = Multiplier = 0; + Values = null; + FloatValues = null; + } + } +} |