This page explains what render pipelinesA series of operations that take the contents of a Scene, and displays them on a screen. Unity lets you choose from pre-built render pipelines, or write your own. More info
See in Glossary and platforms support BatchRendererGroup (BRG) and explains how to set up your project to support BRG.
The following table shows which render pipelines support BRG.
Feature name | Built-in Render Pipeline | Universal Render Pipeline (URP) | High Definition Render Pipeline (HDRP) | Custom SRP |
---|---|---|---|---|
BatchRendererGroup | No | Yes (1) | Yes (1) | Yes (1) |
Notes:
Unity supports BRG on:
Before you use BRG, your project must support it. BRG requires your project to:
Note: The BatchRendererGroup uses DOTS Instancing shaders, but it doesn’t require any DOTS packages. The name reflects the new data-oriented way to load instance data, and also helps with backward compatibility with existing Hybrid Renderer compatible shadersA program that runs on the GPU. More info
See in Glossary.
For information on how to use BRG to create a basic renderer, see Creating a renderer with BatchRendererGroup.