feat: add core quiz game logic, scoreboard, team machine, player management, and debug view with supporting assets and scene.

This commit is contained in:
2025-11-20 22:10:38 +00:00
parent 63fcfa85f8
commit 04310e71b5
52 changed files with 12518 additions and 1163 deletions

View File

@@ -0,0 +1,22 @@
using UdonSharp;
using UnityEngine;
using VRC.SDKBase;
using VRC.Udon;
public class ScoreboardManager : UdonSharpBehaviour
{
public Scoreboard[] scoreboards;
public void UpdateAllScoreboards()
{
if (scoreboards == null) return;
foreach (Scoreboard board in scoreboards)
{
if (board != null)
{
board.UpdateScoreboard();
}
}
}
}