> For the complete documentation index, see [llms.txt](https://reach-cloud.gitbook.io/reach-explorer-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://reach-cloud.gitbook.io/reach-explorer-documentation/metaverse-cloud-engine-sdk/unity-engine-sdk/render-pipelines.md).

# Render Pipelines

{% hint style="info" %}
The SDK will automatically configure Unity so that the color space and rendering path is correct. This section is only for informational purposes.
{% endhint %}

{% tabs %}
{% tab title="Standard/Built-In RP" %}
{% hint style="success" %}
Standard/Built-In (Legacy) Render Pipeline is supported.
{% endhint %}

#### Supported Color Space

* [ ] Gamma
* [x] Linear

#### Supported Rendering Paths

{% hint style="warning" %}
For various reasons, only the "Forward" Rendering Path is supported. Any shaders and/or post processing FX that rely on Deferred rendering will not work.
{% endhint %}

* [x] Forward
* [ ] Deferred
  {% endtab %}

{% tab title="URP" %}
{% hint style="success" %}
Universal Render Pipeline is supported.
{% endhint %}

To use the Universal Render Pipeline, add the `Render Pipeline API` component somewhere in your scene.

<figure><img src="/files/ZVKyeekpauqrL7ok3aEz" alt=""><figcaption></figcaption></figure>

* Make sure `Set On Start` is checked.
* Assign your URP `Render Pipeline Asset` to the `Render Pipeline` field in the inspector.

By default, the demo scene will be a pink hue when loading in with URP. Make sure to [upgrade the materials](https://docs.unity3d.com/6000.2/Documentation/Manual/upgrade-material.html?utm_source=chatgpt.com) using Unity.
{% endtab %}

{% tab title="HDRP" %}
{% hint style="danger" %}
HDRP is not currently supported at the moment.
{% endhint %}
{% endtab %}
{% endtabs %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://reach-cloud.gitbook.io/reach-explorer-documentation/metaverse-cloud-engine-sdk/unity-engine-sdk/render-pipelines.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
