Initial commit

This commit is contained in:
2025-12-10 21:06:22 +01:00
commit cc9190b9ce
476 changed files with 320218 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
namespace Marro.PacManUdon
{
using UdonSharp;
using UnityEngine;
using VRC.SDKBase;
using VRC.Udon;
public class CustomButton : UdonSharpBehaviour
{
[SerializeField] private UdonBehaviour customEventReceiver;
[SerializeField] private string eventName;
public override void Interact()
{
customEventReceiver.SendCustomEvent(eventName);
}
}
}