rimworld-animation-studio/Assets/Scripts/AnimationComponents/KeyFrames/ThingKeyFrame.cs

14 lines
278 B
C#

using System.Collections.Generic;
using System.Xml;
using System.Xml.Serialization;
namespace RimWorldAnimationStudio
{
public class ThingKeyframe : Keyframe
{
public float? positionX;
public float? positionZ;
public float? rotation;
}
}