This section answers some frequently asked questions about the Universal Render Pipeline (URP). These questions come from the General Graphics section on our forums, from the Unity Discord channel, and from our support teams.
For information about the High Definition Render Pipeline (HDRP), please see the HDRP documentation.
No. They're both built with the Scriptable Render Pipeline (SRP), but their render paths and light models are different.
You can convert from the Built-in Render Pipeline to URP. To do so, you'll have to re-write your Assets and redo the lighting in your game or app. See this upgrade guide on installing URP into an existing Project.
You can use our upgrader to upgrade Built-in Shaders to the URP Shaders. For custom Shaders, you'll have to upgrade them manually.
You should not swap pipeline Assets from one pipeline to another at run time, and there's no upgrader between URP and HDRP.
You should update via the Package Manager. In the Unity Editor, go to Unity > Window > Package Manager, and find the Universal RP package.
If you’ve added SRP code or Shader Graph manually via Github, make sure to upgrade them to the same package version as URP in your manifest file.
The Dynamic Batching checkbox has moved from the Player Settings to the URP Asset.
In the Material Inspector, find Render Face, and select Both. This means that both sides of your geometry contribute to global illumination, because URP doesn’t cull either side.
Yes. The graphics quality and performance is scalable across platforms, so you can create apps for PCs and consoles as well as mobile devices.
To see which features URP currently supports, check the comparison table.
URP will not support features marked as Not Supported
.
Not yet. We are working on adding support for a Deferred Renderer.
Yes. You can check it here. You can add suggestions as well. To do so, you’ll have to enter your email address, but you won’t have to make an account.
Yes.
You can open bugs by using the bug reporter system. URP bugs go through the same process as all other Unity bugs. You can also check the active list of bugs for URP in the issue tracker.
URP and the Built-in Render Pipeline have different quality settings. While the Built-in Render Pipeline configures many settings in different places like the Quality Settings, Graphics Settings, and Player Settings, all URP settings are stored in the URP Asset. The first thing to do is to check whether your URP Asset settings match the settings your Built-in render pipeline Project. For example, if you disabled MSAA or HDR in your Built-in render pipeline Project, make sure they are disabled in the URP Asset in your URP Project. For advice on configuring URP Assets, see documentation on the URP Asset.
Also, make sure you are doing a fair comparison in terms of renderers. For this release, URP only supports a forward renderer, so make sure your Built-in render pipeline Project is using the forward renderer as well.
If, after comparing the settings, you still experience worse performance with URP, please open a bug report and attach your Project.
No. Please open a bug report.
We are looking into how to strip Shader keywords more aggressively. You can help the Shader stripper by disabling features you don’t require for your game in the URP Asset. For more information on settings that affect shader variants and build time, see the shader stripping documentation.
You can set the Background Type in the Camera Inspector to control how a Camera's color buffer is initialized.
By default, URP uses a linear color space while rendering. You can also use a gamma color space, which is non-linear. To do so, toggle it in the Player Settings.
To create a scriptable render pass, you have to create a ScriptableRendererFeature
script. This is because the scriptable render feature is a container that can have the pass in it. To create the scriptable render feature in the Editor, click on Asset > Create > Rendering > Universal Render Pipeline > Renderer Feature.