- Added a secret toggle to activate the very special vulpine.

- Disabled jumping.
This commit is contained in:
Jamie Greunbaum
2024-12-09 03:21:13 -05:00
parent 80ed37ca2e
commit 35d294e5e5
25 changed files with 1134 additions and 328 deletions
+6
View File
@@ -24,9 +24,13 @@ public class Horseshoe : UdonSharpBehaviour
public override void OnPickup()
{
Networking.SetOwner(Networking.LocalPlayer, gameObject);
IsBeingHeld = true;
EnableConstraints(false);
RequestSerialization();
base.OnPickup();
}
@@ -43,6 +47,8 @@ public class Horseshoe : UdonSharpBehaviour
EnableConstraints(false);
}
RequestSerialization();
base.OnDrop();
}