add numberstand to downcount

This commit is contained in:
2025-12-03 01:44:40 +00:00
parent d3deec95c8
commit 7a0fbeed7e
263 changed files with 79872 additions and 3086 deletions

View File

@@ -6,4 +6,20 @@ using VRC.Udon;
public class LetterStand : UdonSharpBehaviour
{
public LetterPoint[] letterPoints;
public LetterStack[] letterStacks;
public GameObject controlPanel;
public void ResetCards()
{
foreach (LetterPoint point in letterPoints)
{
point.heldCard = null;
}
foreach (LetterStack stack in letterStacks)
{
stack.ResetLetters();
}
}
}