Camera.OnRenderImage 在渲染图像之后

function OnRenderImage (source : RenderTexture, destination : RenderTexture) : void

Description描述

OnRenderImage is called after all rendering is complete to render image

postprocessing effects (Unity Pro only).

OnRenderImage在所有渲染完成后被调用,来渲染图片的后期处理效果(仅限UnityPro)。

It allows you to modify final image by processing it with shader based filters. The incoming image is source render texture. The result should end up in destination render texture. When there are multiple image filters attached to the camera, they process image sequentially, by passing first filter's destination as the source to the next filter.

这允许你使用基于shader的过滤器来处理最后的图片,进入的图片是source渲染纹理,结果是destination渲染纹理。当有锁个图片过滤器附加在相机上时,它们序列化的处理图片,将第一个过滤器的目标作为下一个过滤器的源。

This message is sent to all scripts attached to the camera.

这个消息被发送到所有附加在相机上的脚本。

最后修改:2011年3月7日 Monday 16:13

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。