- Permissions panel is fully functional.

- Host card can only be picked up by players with "Host" permission.
- Podiums no longer reset on case load.
- Auxiliary screens now disappear during answer reveal in final round.
- Risk card placement area no longer blocks UI interaction on desktop mode.
- Video player in round 2 now changes ownership and syncs correctly.
This commit is contained in:
2025-09-08 00:26:03 -04:00
parent 168d814ad9
commit b028a0a6d4
11 changed files with 212 additions and 55 deletions
@@ -49,8 +49,6 @@ public class HostCardManager : UdonSharpBehaviour
void Start()
{
_PickupComponent = GetComponent<VRCPickup>();
ResetPickupable();
}
@@ -94,9 +92,9 @@ public class HostCardManager : UdonSharpBehaviour
}
public void ResetPickupable()
public void EnablePickup(bool Enable)
{
_PickupComponent.pickupable = (Networking.GetOwner(gameObject) == Networking.LocalPlayer);
_PickupComponent.pickupable = Enable;
}