Actor addons and animation

- Includes addons for hands and sex toys
- WIP and very buggy
This commit is contained in:
AbstractConcept 2022-10-24 23:43:25 -05:00
parent d9e6288e3a
commit cd4711a8e5
400 changed files with 10269 additions and 661 deletions

View file

@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Xml.Serialization;
namespace RimWorldAnimationStudio
{
public class ActorAddon
{
public string addonName;
public int anchoringActor;
public string anchorName;
public string layer = "Pawn";
public float scale;
public bool render;
[XmlIgnore] public SimpleCurve PosX = new SimpleCurve();
[XmlIgnore] public SimpleCurve PosZ = new SimpleCurve();
[XmlIgnore] public SimpleCurve Rotation = new SimpleCurve();
public ActorAddon() { }
public ActorAddon(string addonName, float scale = 1f)
{
this.addonName = addonName;
this.scale = scale;
}
}
}