Added Unity project files
This commit is contained in:
@ -0,0 +1,11 @@
|
||||
|
||||
using UnityEngine;
|
||||
using VRC.Udon.Common.Interfaces;
|
||||
|
||||
namespace VRC.Udon
|
||||
{
|
||||
internal abstract class AbstractUdonBehaviourEventProxy : MonoBehaviour
|
||||
{
|
||||
public UdonBehaviour EventReceiver { get; set; }
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 5803ea71238fea9419dff378e1c5f5c7
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,13 @@
|
||||
using UnityEngine;
|
||||
|
||||
namespace VRC.Udon
|
||||
{
|
||||
[AddComponentMenu("")]
|
||||
internal class OnAnimatorMoveProxy : AbstractUdonBehaviourEventProxy
|
||||
{
|
||||
private void OnAnimatorMove()
|
||||
{
|
||||
EventReceiver.ProxyOnAnimatorMove();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,3 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ebf60f9246d047e5b4eb276969598538
|
||||
timeCreated: 1625706394
|
||||
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d6977159f8fa81e44ba2d5701fbda163
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,14 @@
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace VRC.Udon
|
||||
{
|
||||
[AddComponentMenu("")]
|
||||
internal class OnCollisionStayProxy : AbstractUdonBehaviourEventProxy
|
||||
{
|
||||
private void OnCollisionStay(Collision other)
|
||||
{
|
||||
EventReceiver.ProxyOnCollisionStay(other);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d85dc7e69ef80244189aaecceb6eed66
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,14 @@
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace VRC.Udon
|
||||
{
|
||||
[AddComponentMenu("")]
|
||||
internal class OnRenderObjectProxy : AbstractUdonBehaviourEventProxy
|
||||
{
|
||||
private void OnRenderObject()
|
||||
{
|
||||
EventReceiver.ProxyOnRenderObject();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 861e3a1e3374f22478e5ab06b00b032f
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,14 @@
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace VRC.Udon
|
||||
{
|
||||
[AddComponentMenu("")]
|
||||
internal class OnTriggerStayProxy : AbstractUdonBehaviourEventProxy
|
||||
{
|
||||
private void OnTriggerStay(Collider other)
|
||||
{
|
||||
EventReceiver.ProxyOnTriggerStay(other);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 7bf26b5066b7f2f4b8c4e921e98523e5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@ -0,0 +1,14 @@
|
||||
|
||||
using UnityEngine;
|
||||
|
||||
namespace VRC.Udon
|
||||
{
|
||||
[AddComponentMenu("")]
|
||||
internal class OnWillRenderObjectProxy : AbstractUdonBehaviourEventProxy
|
||||
{
|
||||
private void OnWillRenderObject()
|
||||
{
|
||||
EventReceiver.ProxyOnWillRenderObject();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 80229c20033661747afe59830a80c977
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user