Version: Unity 6 Preview (6000.0)
Language : English
Create shadows with Shadow Caster 2D in URP
Light a VFX Graph asset with 2D lights in URP

Create a 2D sprite lit Shader Graph in URP

Create a shaderA program that runs on the GPU. More info
See in Glossary
that reacts to 2D lights when applied to materials.

Create a Sprite Lit Shader Graph

  1. Create a new asset by selecting Assets > Create > Shader Graph > URP > Sprite Lit Shader Graph. The Shader Graph asset is then created in the asset window.

  2. Double-click the new asset to open the Shader Graph.

  3. Create three Sample Texture 2D Nodes by right-clicking on the Shader Graph window and selecting Create Node, then search for and select the Sample Texture 2D option.

  4. Change the Type of one of the Nodes to Normal.

  5. Attach the RGBA(4) Output Slot of the Default Type Nodes as shown below. Note that you should attach the Normal Type Node’s Output Slot to the Normal(Tangent Space)(3) Input Slot.

  6. Create three Texture 2D properties by selecting the + on the Blackboard, and then select Texture 2D. Name them ‘MainTex’, ‘MaskTex’, and ‘NormalMap’ for this example.

  7. Drag each of the Texture 2D properties onto the editor window. Attach each of the properties to the Input Slots of the Sample Texture 2D Nodes as shown below. Note that the ‘NormalMap’ property must be attached to the Normal Type Node only.

  8. Select Save Asset to save the Shader.

You can now apply the newly built Shader to materials.

Create shadows with Shadow Caster 2D in URP
Light a VFX Graph asset with 2D lights in URP