Has the namespace "LightweightPipeline" been updated to "LWRP" ?

Hi all. I’m trying to extend URP ( LWRP ).

I don’t know when it changed but can use below namespace
using UnityEngine.Experimental.Rendering.LWRP;

and I can’t use this
using UnityEngine.Experimental.Rendering.LightweightPipeline;
( compiler says namespace “LightweightPipeline” is not exist in “UnityEngine.Experimental.Rendering” )

For this reason, I cannot use ”IRendererSetup”, “DepthOnlyPass”, and others.

Does anyone know how to solve it ?
I need your help.

Hi,
The namespace has changed to UnityEngine.Rendering.Universal

We also removed the experimental namespace in 6.5.0

1 Like

To Mr. karl_jones

Thank you for your reply.
I got a hint for the next step with your help. :slight_smile:

1 Like