diff options
Diffstat (limited to 'VRCSDK3Worlds/Assets/Udon/PostLateUpdater.cs')
| -rw-r--r-- | VRCSDK3Worlds/Assets/Udon/PostLateUpdater.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/VRCSDK3Worlds/Assets/Udon/PostLateUpdater.cs b/VRCSDK3Worlds/Assets/Udon/PostLateUpdater.cs new file mode 100644 index 00000000..8feddcd1 --- /dev/null +++ b/VRCSDK3Worlds/Assets/Udon/PostLateUpdater.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using UnityEngine; +using VRC.Udon; + +[DefaultExecutionOrder(31000)] +public class PostLateUpdater : MonoBehaviour +{ + public UdonManager udonManager; + + private void LateUpdate() + { + udonManager.PostLateUpdate(); + } +}
\ No newline at end of file |