Warcorrespondents/Assets/Scripts/ScreenShader.cs
Roman bdc75a3c56 1.整合了SAIPOVersion
2.导入了麒哥动画包
2021-07-26 14:22:41 +08:00

12 lines
296 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class ScreenShader : MonoBehaviour
{
public Material material;
private void OnRenderImage(RenderTexture source,RenderTexture destination){
Graphics.Blit(source, destination, material);
}
}