lobby improvements

This commit is contained in:
2025-11-08 23:36:36 +00:00
parent 391292ad8d
commit 51c4f9f603
789 changed files with 91545 additions and 1358 deletions

View File

@@ -0,0 +1,18 @@

using UdonSharp;
using UnityEngine;
using VRC.SDKBase;
using VRC.Udon;
public class DoorHandle : UdonSharpBehaviour
{
[SerializeField] private Door doorScript;
public override void Interact()
{
if (doorScript != null)
{
doorScript.HandleInteraction();
}
}
}