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

16 lines
478 B
C#
Raw Permalink Normal View History

2023-01-22 16:38:23 +01:00
using UnityEngine;
namespace ABI.CCK.Components
{
[AddComponentMenu("ChilloutVR/CVR Custom Render Texture Updater")]
[HelpURL("https://developers.abinteractive.net/cck/components/custom-render-texture-updater/")]
public class CVRCustomRenderTextureUpdater : MonoBehaviour, ICCK_Component
2023-01-22 16:38:23 +01:00
{
public CustomRenderTexture customRenderTexture;
private void Update()
{
customRenderTexture.Update();
}
}
}