Skip to content

Commit

Permalink
[AGH] Found the correct bones this time
Browse files Browse the repository at this point in the history
  • Loading branch information
Sauceke committed Jan 3, 2022
1 parent 7138727 commit fd5097b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions LoveMachine.AGH/HoukagoRinkanButtplugController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ public abstract class HoukagoRinkanButtplugController : ButtplugController
{
private static readonly List<string> SayaBones = new List<string>
{
"CH01/CH0001/CH01_pussy00",
"HS01_cli",
"bip01 L Finger1Nub",
"BF01_tongue01",
"HS_Breast_LL"
};

private static readonly List<string> ElenaBones = new List<string>
{
"CH02/CH0002/CH01_pussy00",
"HS01_cli_02",
"bip01 L Finger1Nub_02",
"BF01_tongue01_02",
"HS_Breast_LL_02"
Expand All @@ -41,7 +41,7 @@ protected override List<Transform> GetFemaleBones(int girlIndex)
.Select(bone => GameObject.Find(bone).transform).ToList();

protected override Transform GetMaleBone()
=> GameObject.Find("PC01/PC/HS_kiten_PC/PC00Bip/PC00Bip Pelvis").transform;
=> GameObject.Find("BP00_tamaL").transform;

protected override string GetPose(int girlIndex)
=> GetFemaleAnimator(girlIndex).GetCurrentAnimatorClipInfo(0)[0].clip.name + "."
Expand Down

0 comments on commit fd5097b

Please sign in to comment.