summaryrefslogtreecommitdiff
path: root/VRCSDK3Worlds/Assets/Udon/EventProxies/OnRenderObjectProxy.cs
blob: 049568a495485c156a53ef0524127661d2c634b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using UnityEngine;

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