- Modem camera transition now has zoom animations.

- Added a CameraAnchor and follower for the winning player in round 2.
- Round 2 now has a more reliable check for when the call ends.
- CameraAnchor can now follow different areas of a player's body.
- CameraTimedSwitcher can now choose to always reactivate when asked.
- Glass shatter effect now only works for hosts.
- CaseVideoSyncPlayer will no longer crash when skipping too fast in round 1.
- Fixed an erroneous camera switcher activation in round 3.
- Made a minor wording change to Eartha Brute's wanted poster.
This commit is contained in:
2026-03-25 04:08:23 -04:00
parent 69bc79ef7a
commit e485d0d992
37 changed files with 2939 additions and 1237 deletions
@@ -313,7 +313,14 @@ public class CaseVideoSyncPlayer : UdonSharpBehaviour
}
public void LoadNewVideoURL()
{
_VideoPlayer.LoadURL(_CaseVideoList[_VideoIndex]);
if (_VideoIndex >= 0 && _VideoIndex < _CaseVideoList.Length)
{
_VideoPlayer.LoadURL(_CaseVideoList[_VideoIndex]);
}
else
{
Debug.LogError("[CaseVideoSyncPlayer] Video index " + _VideoIndex + " is invalid for a list of " + _CaseVideoList.Length + " videos");
}
}
private void _PlayVideo_Private()