Version: 2022.3
言語: 日本語

Camera.OnRenderImage(RenderTexture,RenderTexture)

マニュアルに切り替える

パラメーター

source A RenderTexture containing the source image.
destination The RenderTexture to update with the modified image.

説明

Event function that Unity calls after a Camera has finished rendering, that allows you to modify the Camera's final image.

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.

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.