Skip to content

Commit a213e72

Browse files
Final 8.2.2
1 parent 3cd782e commit a213e72

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Mods/Fun.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,8 +508,8 @@ public static void EventReceived_KeyboardTracker(EventData data)
508508
if (Vector3.Distance(target.transform.position, keyboardTransform.position) < 3f)
509509
{
510510
string handPath = (bool)args[1]
511-
? "rig/body_pivot/hand.L/palm.01.L/f_index.01.L/f_index.02.L/f_index.03.L/f_index.03.L_end"
512-
: "rig/body_pivot/hand.R/palm.01.R/f_index.01.R/f_index.02.R/f_index.03.R/f_index.03.R_end";
511+
? "rig/hand.L/palm.01.L/f_index.01.L/f_index.02.L/f_index.03.L/f_index.03.L_end"
512+
: "rig/hand.R/palm.01.R/f_index.01.R/f_index.02.R/f_index.03.R/f_index.03.R_end";
513513

514514
Vector3 position = target.gameObject.transform.Find(handPath).position;
515515

Mods/Movement.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3771,7 +3771,7 @@ public static void Telekinesis()
37713771
{
37723772
if (vrrig.rightIndex.calcT < 0.5f && vrrig.rightMiddle.calcT > 0.5f)
37733773
{
3774-
Vector3 dir = vrrig.transform.Find("rig/body_pivot/hand.R").up;
3774+
Vector3 dir = vrrig.transform.Find("rig/hand.R").up;
37753775
Physics.SphereCast(vrrig.rightHandTransform.position + dir * 0.1f, 0.3f, dir, out var Ray, 512f, NoInvisLayerMask());
37763776
{
37773777
VRRig gunTarget = Ray.collider.GetComponentInParent<VRRig>();
@@ -3785,7 +3785,7 @@ public static void Telekinesis()
37853785
}
37863786
if (vrrig.leftIndex.calcT < 0.5f && vrrig.leftMiddle.calcT > 0.5f)
37873787
{
3788-
Vector3 dir = vrrig.transform.Find("rig/body_pivot/hand.L").up;
3788+
Vector3 dir = vrrig.transform.Find("rig/hand.L").up;
37893789
Physics.SphereCast(vrrig.leftHandTransform.position + dir * 0.1f, 0.3f, dir, out var Ray, 512f, NoInvisLayerMask());
37903790
{
37913791
VRRig gunTarget = Ray.collider.GetComponentInParent<VRRig>();
@@ -3805,7 +3805,7 @@ public static void Telekinesis()
38053805
if (sithright ? sithlord.rightIndex.calcT < 0.5f && sithlord.rightMiddle.calcT > 0.5f : sithlord.leftMiddle.calcT < 0.5f && sithlord.leftMiddle.calcT > 0.5f)
38063806
{
38073807
Transform hand = sithright ? sithlord.rightHandTransform : sithlord.leftHandTransform;
3808-
Vector3 dir = sithright ? sithlord.transform.Find("rig/body_pivot/hand.R").up : sithlord.transform.Find("rig/body_pivot/hand.L").up;
3808+
Vector3 dir = sithright ? sithlord.transform.Find("rig/hand.R").up : sithlord.transform.Find("rig/hand.L").up;
38093809
TeleportPlayer(Vector3.Lerp(GorillaTagger.Instance.bodyCollider.transform.position, hand.position + dir * sithdist, 0.1f));
38103810
GorillaTagger.Instance.rigidbody.linearVelocity = Vector3.zero;
38113811
ZeroGravity();

Mods/Settings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -858,11 +858,11 @@ public static void PhysicalMenuOff()
858858
public static void WatchMenuOn()
859859
{
860860
watchMenu = true;
861-
GameObject mainwatch = VRRig.LocalRig.transform.Find("rig/body_pivot/hand.L/huntcomputer (1)").gameObject;
861+
GameObject mainwatch = VRRig.LocalRig.transform.Find("rig/hand.L/huntcomputer (1)").gameObject;
862862
watchobject = Object.Instantiate(mainwatch,
863863
rightHand ?
864-
VRRig.LocalRig.transform.Find("rig/body_pivot/hand.R").transform :
865-
VRRig.LocalRig.transform.Find("rig/body_pivot/hand.L").transform, false);
864+
VRRig.LocalRig.transform.Find("rig/hand.R").transform :
865+
VRRig.LocalRig.transform.Find("rig/hand.L").transform, false);
866866

867867
Object.Destroy(watchobject.GetComponent<GorillaHuntComputer>());
868868
watchobject.SetActive(true);

PluginInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class PluginInfo
2626
public const string GUID = "org.iidk.gorillatag.iimenu";
2727
public const string Name = "ii's Stupid Menu";
2828
public const string Description = "Created by @crimsoncauldron with love <3";
29-
public const string BuildTimestamp = "2026-02-07T04:48:45Z";
29+
public const string BuildTimestamp = "2026-02-07T04:53:22Z";
3030
public const string Version = "8.2.2";
3131

3232
public const string BaseDirectory = "iisStupidMenu";

0 commit comments

Comments
 (0)