loudixvmuniu/Assets/_Scripts/Application/SceneCtrls/VideoRawTextureClearCtrl.cs

27 lines
735 B
C#
Raw Normal View History

2025-01-12 15:26:31 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Video;
/*******************************************************************************
*Create By CG
*Function
*******************************************************************************/
namespace ZXK.LouDiXvMuNiu
{
public class VideoRawTextureClearCtrl : MonoBehaviour
{
RenderTexture _renderTexture;
private void Awake()
{
_renderTexture = transform.GetComponent<VideoPlayer>().targetTexture;
}
private void OnEnable()
{
_renderTexture.Release();
}
private void OnDisable()
{
_renderTexture.Release();
}
}
}