feat: Add quiz scene with scoreboard, team machine, door, and player management systems.

This commit is contained in:
2025-11-21 05:47:51 +00:00
parent 04310e71b5
commit 97665ea5a4
123 changed files with 1289 additions and 215 deletions

View File

@@ -0,0 +1,18 @@
using TMPro;
using UdonSharp;
using UnityEngine;
using UnityEngine.UI;
public class ScoreboardRow : UdonSharpBehaviour
{
public TMP_Text nameText;
public TMP_Text scoreText;
public Image backgroundImage;
public void SetData(string name, string score, Color color)
{
if (nameText != null) nameText.text = name;
if (scoreText != null) scoreText.text = score;
if (backgroundImage != null) backgroundImage.color = color;
}
}