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,11 @@

using UnityEngine;
using VRC.Udon.Common.Interfaces;
namespace VRC.Udon
{
internal abstract class AbstractUdonBehaviourEventProxy : MonoBehaviour
{
public UdonBehaviour EventReceiver { get; set; }
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 5803ea71238fea9419dff378e1c5f5c7
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,13 @@
using UnityEngine;
namespace VRC.Udon
{
[AddComponentMenu("")]
internal class OnAnimatorMoveProxy : AbstractUdonBehaviourEventProxy
{
private void OnAnimatorMove()
{
EventReceiver.ProxyOnAnimatorMove();
}
}
}

View File

@ -0,0 +1,3 @@
fileFormatVersion: 2
guid: ebf60f9246d047e5b4eb276969598538
timeCreated: 1625706394

View File

@ -0,0 +1,13 @@
using UnityEngine;
namespace VRC.Udon
{
[AddComponentMenu("")]
internal class OnAudioFilterReadProxy : AbstractUdonBehaviourEventProxy
{
public void OnAudioFilterRead(float[] data, int channels)
{
EventReceiver.ProxyOnAudioFilterRead(data, channels);
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: d6977159f8fa81e44ba2d5701fbda163
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,14 @@

using UnityEngine;
namespace VRC.Udon
{
[AddComponentMenu("")]
internal class OnCollisionStayProxy : AbstractUdonBehaviourEventProxy
{
private void OnCollisionStay(Collision other)
{
EventReceiver.ProxyOnCollisionStay(other);
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: d85dc7e69ef80244189aaecceb6eed66
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,14 @@

using UnityEngine;
namespace VRC.Udon
{
[AddComponentMenu("")]
internal class OnRenderObjectProxy : AbstractUdonBehaviourEventProxy
{
private void OnRenderObject()
{
EventReceiver.ProxyOnRenderObject();
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 861e3a1e3374f22478e5ab06b00b032f
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,14 @@

using UnityEngine;
namespace VRC.Udon
{
[AddComponentMenu("")]
internal class OnTriggerStayProxy : AbstractUdonBehaviourEventProxy
{
private void OnTriggerStay(Collider other)
{
EventReceiver.ProxyOnTriggerStay(other);
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 7bf26b5066b7f2f4b8c4e921e98523e5
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,14 @@

using UnityEngine;
namespace VRC.Udon
{
[AddComponentMenu("")]
internal class OnWillRenderObjectProxy : AbstractUdonBehaviourEventProxy
{
private void OnWillRenderObject()
{
EventReceiver.ProxyOnWillRenderObject();
}
}
}

View File

@ -0,0 +1,11 @@
fileFormatVersion: 2
guid: 80229c20033661747afe59830a80c977
MonoImporter:
externalObjects: {}
serializedVersion: 2
defaultReferences: []
executionOrder: 0
icon: {instanceID: 0}
userData:
assetBundleName:
assetBundleVariant: