mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
28 lines
742 B
C#
28 lines
742 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Verse;
|
|
using Rimworld_Animations;
|
|
|
|
namespace Rimworld_Animations_Patch
|
|
{
|
|
public class HandAnimationDef : Def
|
|
{
|
|
public string animationDefName;
|
|
|
|
public List<HandAnimationData> handAnimationData = new List<HandAnimationData>();
|
|
}
|
|
|
|
public class HandAnimationData
|
|
{
|
|
public int stageID = 0;
|
|
public int actorID = 0;
|
|
public int touchingActorID = -1;
|
|
public string targetBodyPart;
|
|
public string bodySide = "";
|
|
public List<string> targetBodyParts = new List<string>();
|
|
public string motion;
|
|
public int cycleTime = 0;
|
|
public bool mirror = false;
|
|
}
|
|
}
|