Converting a Project to URP - Unity Game Development Tutorial

In this Unity game development tutorial we're going to look at how we can convert an existing project, using the built-in render pipeline, over to the newer Universal Render Pipeline.

URP is a Scriptable Render Pipeline that lets you create optimized graphics across a wide range of platforms. 

It also allows us to create shaders and effects visually, using Shader Graph and Visual Effect Graph.

You can either watch the video version below or continue reading for written instructions.

We're going to start with the project we created in our 'Slow Motion Effect' tutorial.

The initial scene

The first thing we need to do is to import the Universal Render Pipeline package. To do this we'll select Window->Package Manager from the main menu. We'll search for Universal RP.

Installing the Universal RP Pacakge

And we’ll install this package.

Now we've installed the package we need to configure it. To do this, we need to create a Scriptable Render Pipeline Asset by clicking the plus button on the Project panel and selecting Rendering->Universal Render Pipeline->Pipeline Asset.

This asset allows us to set the graphics quality for our game. For example, we can change the shadow quality and the anti aliasing.

Altering the graphics settings

This doesn't affect anything in our game yet, as we need to update our Graphics Settings first. To do this we'll select Edit->Project Settings from the main menu. We'll select the Graphics tab and then we'll drag the asset we just created into the Scriptable Render Pipeline Settings.

Setting the Scriptable Render Pipeline Settings

You'll notice our scene is now a bit pink!

The scene all pink

To fix this, we need to convert our shaders to URP shaders. To do this we'll select Edit->Render Pipeline->Universal Render Pipeline->Upgrade Project Materials to URP Materials from the main menu.

That's it! Our project is now using the Universal Render Pipeline, and if we change the quality settings we can now see it change in our scene.

That covers everything for this tutorial. We hope that you found it useful. Please leave any questions or feedback in the comments below, and don't forget to subscribe to get notified when we publish our next post.

Thanks.

Comments

Popular posts from this blog

Rotating a Character in the Direction of Movement - Unity Game Development Tutorial

Changing the Colour of a Material - Unity Game Development Tutorial

Creating Terrain from Heightmaps - Unity Game Development Tutorial