mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2024-08-15 00:43:45 +00:00
better bodytype offsets for hulk
This commit is contained in:
parent
ce09ac0b2a
commit
04717154e3
7 changed files with 67 additions and 2 deletions
|
@ -16,6 +16,7 @@ namespace Rimworld_Animations {
|
|||
public bool isFucking = false;
|
||||
public bool isFucked = false;
|
||||
public bool controlGenitalAngle = false;
|
||||
public BodyTypeOffset bodyTypeOffset = new BodyTypeOffset();
|
||||
public Vector3 offset = new Vector2(0, 0);
|
||||
}
|
||||
}
|
||||
|
|
18
Source/Actors/BodyTypeOffset.cs
Normal file
18
Source/Actors/BodyTypeOffset.cs
Normal file
|
@ -0,0 +1,18 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using UnityEngine;
|
||||
|
||||
namespace Rimworld_Animations {
|
||||
public class BodyTypeOffset {
|
||||
|
||||
public Vector2? Male;
|
||||
public Vector2? Female;
|
||||
public Vector2? Thin;
|
||||
public Vector2? Hulk;
|
||||
public Vector2? Fat;
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue