13 lines
264 B
C#
13 lines
264 B
C#
using UnityEngine;
|
|
|
|
namespace VRC.Udon
|
|
{
|
|
[AddComponentMenu("")]
|
|
internal class OnAnimatorMoveProxy : AbstractUdonBehaviourEventProxy
|
|
{
|
|
private void OnAnimatorMove()
|
|
{
|
|
EventReceiver.ProxyOnAnimatorMove();
|
|
}
|
|
}
|
|
} |