Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


OnRenderImage(RenderTexture, RenderTexture)

Event function that Unity calls after a Camera has finished rendering, that allows you to modify the Camera's final image.
Read time 1 minuteLast updated 4 days ago

Definition

OnRenderImage()

public void OnRenderImage(RenderTexture renderTexture, RenderTexture renderTexture2)

Parameters

renderTexture


renderTexture2

Remarks

In the Built-in Render Pipeline, Unity calls
OnRenderImage
on MonoBehaviours that are attached to the same GameObject as an enabled Camera component, after the Camera finished rendering. You can use
OnRenderImage
to create a fullscreen post-processing effect. For a full description and code example, see MonoBehaviour.OnRenderImage(RenderTexture, RenderTexture).
OnRenderImage
is not supported in the Scriptable Render Pipeline. To create custom fullscreen effects in the Universal Render Pipeline (URP), use the ScriptableRenderPass API. To create custom fullscreen effects in the High Definition Render Pipeline (HDRP), use a Fullscreen Custom Pass.