Race customization and data saving

This commit is contained in:
AbstractConcept 2022-09-24 02:17:40 -05:00
parent 2f3f807911
commit d3b676df06
456 changed files with 6388 additions and 419 deletions

View file

@ -47,7 +47,7 @@ namespace RimWorldAnimationStudio
}
}
else
else if (rotation == 1)
{
switch (bodyType)
{
@ -59,6 +59,19 @@ namespace RimWorldAnimationStudio
default: return Vector3.zero;
}
}
else
{
switch (bodyType)
{
case "Male": return new Vector3(-0.07f, 0f, -0.41f);
case "Female": return new Vector3(-0.07f, 0f, -0.47f);
case "Thin": return new Vector3(0.05f, 0f, -0.43f);
case "Hulk": return new Vector3(0.03f, 0f, -0.64f);
case "Fat": return new Vector3(-0.24f, 0f, -0.50f);
default: return Vector3.zero;
}
}
}
}
}