cvr-props/Assets/ABI.CCK/Components/CVRCustomRenderTextureUpdater.cs

16 lines
335 B
C#
Raw Normal View History

2023-01-22 16:38:23 +01:00
using System;
using UnityEngine;
using UnityEngine.PlayerLoop;
namespace ABI.CCK.Components
{
public class CVRCustomRenderTextureUpdater : MonoBehaviour
{
public CustomRenderTexture customRenderTexture;
private void Update()
{
customRenderTexture.Update();
}
}
}