Version: 5.4

MonoBehaviour.OnRenderImage(RenderTexture,RenderTexture)

Cambiar al Manual

Descripción

OnRenderImage is called after all rendering is complete to render image.

Efectos de postptroceso (solo en Unity Pro).

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.

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

See Also: The image effects package.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public Material mat; void OnRenderImage(RenderTexture src, RenderTexture dest) { Graphics.Blit(src, dest, mat); } }