Skip to content

Commit 4f23388

Browse files
authored
DOC-1664 Added: Customizing URP: Using the beginCameraRendering event. (#383)
1 parent e19866a commit 4f23388

File tree

5 files changed

+75
-0
lines changed

5 files changed

+75
-0
lines changed
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading

com.unity.render-pipelines.universal/Documentation~/TableOfContents.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@
6262
* [Upgrading shaders from Built-in](upgrading-your-shaders.md)
6363
* [Shader stripping](shader-stripping.md)
6464

65+
* [Customizing URP](customizing-urp.md)
66+
* [beginCameraRendering event](using-begincamerarendering.md)
67+
6568
* [2D](2d-index.md)
6669
* [Introduction to Lights 2D](Lights-2D-intro.md)
6770
* [Requirements and setup](Setup.md)
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Customizing URP
2+
3+
This section contains information on how to customize and extend the rendering process in URP.
4+
5+
This section contains the following articles:
6+
7+
* [Using the beginCameraRendering event](using-begincamerarendering.md)
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Using the beginCameraRendering event
2+
3+
The example on this page shows how to use the [beginCameraRendering](https://docs.unity3d.com/ScriptReference/Rendering.RenderPipelineManager-beginCameraRendering.html) event to run a custom method.
4+
5+
## beginCameraRendering event overview
6+
7+
Unity raises a `beginCameraRendering` event before it renders each active Camera in every frame. If a Camera is inactive (for example, if the __Camera__ component checkbox is cleared on a Camera GameObject), Unity does not raise a `beginCameraRendering` event for this Camera.
8+
9+
When you subscribe a method to this event, you can execute custom logic before Unity renders the Camera. Examples of custom logic include rendering extra Cameras to Render Textures, and using those Textures for effects like planar reflections or surveillance camera views.
10+
11+
Other events in the [RenderPipelineManager](https://docs.unity3d.com/ScriptReference/Rendering.RenderPipelineManager.html) class provide more ways to customize URP. You can also use the principles described in this article with those events.
12+
13+
## beginCameraRendering event example
14+
15+
This example demonstrates how to subscribe a method to the `beginCameraRendering` event.
16+
To follow the steps in this example, create a [new Unity project using the __Universal Project Template__](https://docs.unity3d.com/Packages/[email protected]/manual/creating-a-new-project-with-urp.html).
17+
18+
1. In the Scene, create a Cube. Name it Example Cube.
19+
2. In your Project, create a C# script. Call it `URPCallbackExample`.
20+
3. Copy and paste the following code into the script.
21+
```C#
22+
using UnityEngine;
23+
using UnityEngine.Rendering;
24+
25+
public class URPCallbackExample : MonoBehaviour
26+
{
27+
// Unity calls this method automatically when it enables this component
28+
private void OnEnable()
29+
{
30+
// Add WriteLogMessage as a delegate of the RenderPipelineManager.beginCameraRendering event
31+
RenderPipelineManager.beginCameraRendering += WriteLogMessage;
32+
}
33+
34+
// Unity calls this method automatically when it disables this component
35+
private void OnDisable()
36+
{
37+
// Remove WriteLogMessage as a delegate of the RenderPipelineManager.beginCameraRendering event
38+
RenderPipelineManager.beginCameraRendering -= WriteLogMessage;
39+
}
40+
41+
// When this method is a delegate of RenderPipeline.beginCameraRendering event, Unity calls this method every time it raises the beginCameraRendering event
42+
void WriteLogMessage(ScriptableRenderContext context, Camera camera)
43+
{
44+
// Write text to the console
45+
Debug.Log($"Beginning rendering the camera: {camera.name}");
46+
}
47+
}
48+
```
49+
> **NOTE**: When you subscribe to an event, your handler method (in this example, `WriteLogMessage`) must accept the parameters defined in the event delegate. In this example, the event delegate is `RenderPipeline.BeginCameraRendering`, which expects the following parameters: `<ScriptableRenderContext, Camera>`.
50+
51+
4. Attach the `URPCallbackExample` script to Example Cube.
52+
53+
5. Select __Play__. Unity prints the message from the script in the Console window each time Unity raises the `beginCameraRendering` event.
54+
55+
![Unity prints log message in console.](Images/customizing-urp/log-message-in-console.png)
56+
57+
6. To raise a call to the `OnDisable()` method: In the Play mode, select Example Cube and clear the checkbox next to the script component title. Unity unsubscribes `WriteLogMessage` from the `RenderPipelineManager.beginCameraRendering` event and stops printing the message in the Console window.
58+
59+
![Deactivate the script component. Clear the checkbox next to the script component title.](Images/customizing-urp/deactivate-script-component.png)

0 commit comments

Comments
 (0)