Unity Knowledge Record--Project Upgrade URP

URP refers to Unity's universal rendering pipeline. Here it is mainly used for upgrading the original project, but not all content can be directly upgraded. The default shader of Unity used directly can usually be directly upgraded. The shader written by oneself Usually needs to be redone.


First of all, we need to install the Package and open the Package Manager.

 


Find our URP package, click install to install.

 


After installation, go to the Project window, prepare to create the files required by URP, and create a new folder to place it. This folder can be named as the rendering system.

通过Create->Rendering->Universal Render Pipeline->Pipeline Asset(Forward Render)

 


The name depends on your preference, you can directly input Chinese.

Here I named it Universal Rendering Pipeline, and there will be two files generated here.

 


Open Project Settings.

 


Find Graphics, click on the circle to select the file you just created.

 


after selection.

 


Then check your own materials and you will find that there is a problem with the color, and then you need to upgrade the resources of the entire project.

 


Usually come to Edit->Render Pipeline->Universal Render Pipeline->Upgrade Project Materials to UniversalRP Materials. This can only upgrade the original shader that comes with Unity.

 


After clicking, wait for the background update, and then the color of the character can be displayed normally.

 

Guess you like

Origin blog.csdn.net/m0_69824302/article/details/131710464