Added Unity project files
This commit is contained in:
16
Packages/com.vrchat.worlds/Runtime/Udon/PostLateUpdater.cs
Normal file
16
Packages/com.vrchat.worlds/Runtime/Udon/PostLateUpdater.cs
Normal file
@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user