add numberstand to downcount
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user