16 lines
335 B
C#
16 lines
335 B
C#
|
using System;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.PlayerLoop;
|
||
|
|
||
|
namespace ABI.CCK.Components
|
||
|
{
|
||
|
public class CVRCustomRenderTextureUpdater : MonoBehaviour
|
||
|
{
|
||
|
public CustomRenderTexture customRenderTexture;
|
||
|
|
||
|
private void Update()
|
||
|
{
|
||
|
customRenderTexture.Update();
|
||
|
}
|
||
|
}
|
||
|
}
|