Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


beginCameraRendering

Delegate that you can use to invoke custom code before Unity renders an individual Camera.
Read time 1 minuteLast updated 4 days ago

Definition

public static event Action<ScriptableRenderContext, Camera> beginCameraRendering

Remarks

When Unity calls RenderPipeline.BeginCameraRendering, it executes the methods in this delegate's invocation list.
In the Universal Render Pipeline (URP) and the High Definition Render Pipeline (HDRP), Unity calls RenderPipeline.BeginCameraRendering automatically. If you are writing a custom Scriptable Render Pipeline and you want to use this delegate, you must add a call to RenderPipeline.BeginCameraRendering.
The following code example demonstrates how to add a method to this delegate's invocation list, and later remove it.
using UnityEngine;using UnityEngine.Rendering;public class ExampleClass : MonoBehaviour{ void Start() { RenderPipelineManager.beginCameraRendering += OnBeginCameraRendering; } void OnBeginCameraRendering(ScriptableRenderContext context, Camera camera) { // Put the code that you want to execute before the camera renders here // If you are using URP or HDRP, Unity calls this method automatically // If you are writing a custom SRP, you must call <see cref="UnityEngine.Rendering.RenderPipeline.BeginCameraRendering"></see> } void OnDestroy() { RenderPipelineManager.beginCameraRendering -= OnBeginCameraRendering; }}