当前位置:网站首页>SampleCameraFilter
SampleCameraFilter
2022-04-23 07:46:00 【老少年】
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[RequireComponent(typeof(Camera))/*,ExecuteInEditMode*/]
public class SampleCameraFilter : MonoBehaviour {
public RenderTexture rt;
//src和des是引擎創建的對象,我們只能使用,但是不要自己引用到本地。
private void OnRenderImage(RenderTexture src, RenderTexture des)
{
Graphics.Blit(src, des);//這一句一定要有,保證畫面傳遞下去。不然會中斷camera畫面,別的濾鏡會失效。
//這裏要拷貝渲染出一張rt
if (rt == null)
{
rt = RenderTexture.GetTemporary(src.width, src.height);//unity自己在維護一個RenderTexture池,我們從緩存中取就行。
}
Graphics.Blit(src,rt);//拷貝圖像
}
private void OnDestroy()
{
if (rt != null)
{
RenderTexture.ReleaseTemporary(rt);//記得釋放引用
}
}
}
版权声明
本文为[老少年]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204230626191528.html
边栏推荐
猜你喜欢
Simple random roll call lottery (written under JS)
Implementation of MySQL persistence
ogldev-读书笔记
Nacos / sentinel gateway current limiting and grouping (code)
ABAP CDS VIEW WITH ASSOCIATION示例
设置了body的最大宽度,但是为什么body的背景颜色还铺满整个页面?
King glory - unity learning journey
利用Lambda表达式解决c#文件名排序问题(是100大还是11大的问题)
keytool: command not found
超级宝典&编程指南(红蓝宝书)-读书笔记
随机推荐
2022.3.14 Ali written examination
The page displays the current time in real time
根据某一指定的表名、列名及列值来向前或向后N条查相关列值的SQL自定义标量值函数
14. Transaction processing
事件系统(二)多播事件
js之自定义属性以及H5中如何判断自定义属性
基于NLP的软件安全研究(一)
将指定路径下的所有SVG文件导出成PNG等格式的图片(缩略图或原图大小)
Learn to use search engines
Mvcc (multi version concurrency control)
二叉树的深度
[self motivation series] what really hinders you?
Simple random roll call lottery (written under JS)
系统与软件安全研究(一)
系统与软件安全研究(四)
C# 多个矩形围成的多边形标注位置的问题
SAP Excel 已完成文件级验证和修复。此工作簿的某些部分可能已被修复或丢弃。
Nacos / sentinel gateway current limiting and grouping (code)
颜色转换公式大全及转换表格(31种)
c#读取INI文件和向ini文件写入数据