rimworld-animations/1.5/Source/Animations/AnimationOffsets/Offsets/AnimationOffset_BodyTypeGen...

31 lines
758 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using UnityEngine;
using Verse;
namespace Rimworld_Animations
{
public class AnimationOffset_BodyTypeGendered : BaseAnimationOffset
{
public List<BodyTypeOffset> offsetsMale;
public List<BodyTypeOffset> offsetsFemale;
public override Vector3? getOffset(Pawn pawn)
{
if (pawn.gender == Gender.Female)
{
return offsetsFemale.Find(x => x.bodyType == pawn.story.bodyType)?.offset;
}
else
{
return offsetsMale.Find(x => x.bodyType == pawn.story.bodyType)?.offset;
}
}
}
}