cvr-props/Assets/ABI.CCK/Components/CVRCustomRenderTextureUpdater.cs
2023-01-22 16:38:23 +01:00

16 lines
No EOL
335 B
C#
Executable file

using System;
using UnityEngine;
using UnityEngine.PlayerLoop;
namespace ABI.CCK.Components
{
public class CVRCustomRenderTextureUpdater : MonoBehaviour
{
public CustomRenderTexture customRenderTexture;
private void Update()
{
customRenderTexture.Update();
}
}
}