Unity ScriptableRenderContext Error when trying example scene

I am following the getting started with Unity instructions and when I try to run an example scene I get the following error:

Assets\ZED\SDK\Helpers\Scripts\MR\ZEDMixedRealityPlugin.cs(662,32): error CS0246: The type or namespace name ‘ScriptableRenderContext’ could not be found (are you missing a using directive or an assembly reference?)

Any help is appreciated.

Hi @delucr, welcome to the forums

There is indeed an using UnityEngine.Rendering; missing.
Please add it manually at the top of the Assets\ZED\SDK\Helpers\Scripts\MR\ZEDMixedRealityPlugin.cs script, it should work.

We’ll fix this oversight in the next release (we don’t dev with the URP on enough, it seems :sweat: )

Best,
Jean-Loup

1 Like

Thanks Jean-Loup!

That worked. I appreciate the help.

-Rich

1 Like