16 lines
No EOL
335 B
C#
Executable file
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();
|
|
}
|
|
}
|
|
} |