# Render Pipelines
Unity's scriptable render pipelines (SRP) — both URP and HDRP — are supported with some limitations and require additional setup.
WARNING
The SRPs are still hardly production-ready and lack features compared to default rendering system. It's not recommended to use the render pipelines, unless you're an advanced user and ready to solve potential issues and limitations. Be aware, that we won't be able to provide any support or guidance for the engine features that are not working with the SRPs (see limitations below).
# Setup
See the official documentation on how to install and configure your SRP of choice.
Both URP and HDRP don't support multiple cameras, so it's required to disable Use UI Camera
in the camera configuration menu (enabled by default).
When running under HDRP, change color space to linear (HDRP doesn't support gamma mode, which is set by default).
# Limitations
Some built-in effects and features (eg, Depth Of Field, Digital Glitch, @startTrans
and @finishTrans
commands) won't work with SRPs due to lack of the required rendering features. It's possible to replace most of the missing effects and features via various hacks and use them without modifying Naninovel's source code or package content; see special effects and custom commands guides for more information on extending the engine in that regard.