Added Unity project files

This commit is contained in:
2026-06-07 16:58:24 +01:00
parent 3cc05d260b
commit 23bbcab156
3942 changed files with 453676 additions and 0 deletions

View File

@ -0,0 +1,13 @@
using UnityEngine;
namespace VRC.Udon
{
public interface IUdonTriggerEventConsumer
{
int Priority { get; }
bool TryConsumeOnTriggerEnter(UdonBehaviour udonBehaviour, Collider other);
bool TryConsumeOnTriggerExit(UdonBehaviour udonBehaviour, Collider other);
bool TryConsumeOnTriggerStay(UdonBehaviour udonBehaviour, Collider other);
}
}