- 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:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user