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

@@ -0,0 +1,16 @@

using UdonSharp;
using UnityEngine;
using VRC.SDKBase;
using VRC.Udon;
public class VisibleToMasterOnly : UdonSharpBehaviour
{
void Start()
{
if (!Networking.IsOwner(this.gameObject))
{
this.gameObject.SetActive(false);
}
}
}