Added Unity project files
This commit is contained in:
@ -0,0 +1,14 @@
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace VRC.Udon
|
||||
{
|
||||
[AddComponentMenu("")]
|
||||
internal class OnTriggerStayProxy : AbstractUdonBehaviourEventProxy
|
||||
{
|
||||
private void OnTriggerStay(Collider other)
|
||||
{
|
||||
EventReceiver.ProxyOnTriggerStay(other);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user