Firstborn/Library/PackageCache/com.unity.render-pipelines..../Documentation~/writing-shaders-urp-basic-p...
Schaken-Mods 9092858a58 updated to the latest editor
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
2023-05-07 17:43:11 -05:00

885 B

Creating a sample scene

To follow the examples in this section:

  1. Install URP into an existing Unity project, or create a new project using the Universal Project Template.

  2. In the sample Scene, create a GameObject to test the shaders on; for example, a capsule.

    Sample GameObject

  3. Create a new Material and assign it to the capsule.

  4. Create a new Shader asset and assign it to the Material of the capsule. When following an example, open the shader asset to edit the Unity shader source file. Replace the code in the source file with the code in the example.

To start writing URP shaders, continue to section URP unlit basic shader.