> For the complete documentation index, see [llms.txt](https://multiset.gitbook.io/multiset/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://multiset.gitbook.io/multiset/workflow/unity-sdk-update-guide.md).

# Unity SDK Update guide

This guide provides instructions for updating the MultiSet Unity SDK in your Unity project using the Unity Package Manager (UPM) and how to safely work with the included sample scenes.

**SDK Update Guidelines**

The MultiSet Unity SDK is installed via a Git URL through the Unity Package Manager. To ensure you have the latest features and bug fixes, you can update the SDK directly from the Package Manager.

1. **Open the Package Manager:** In the Unity Editor, navigate to Window > Package Manager.
2. **Locate the SDK:** In the Package Manager window, find and select "MultiSet-SDK" from the list of packages in your project.
3. **Update the Package:** If an update is available, a "Update" button will be visible. Click this button to download and install the latest version of the SDK.

Alternatively, you can remove the existing package and re-add it using the Git URL to ensure you have the most recent version.

**Working with Sample Scenes**

The MultiSet Unity SDK includes several sample scenes to help you understand and integrate its features.

**Location of Sample Scenes**

After installing the SDK via the Unity Package Manager with the GitHub URL (<https://github.com/MultiSet-AI/multiset-quest-sdk.git>), you can find the sample scenes in the following directory:\
**Assets/Samples/MultiSet-SDK/x.x.x/Sample Scenes/**

**Important Steps for Using Sample Scenes Safely**

To avoid losing your work when updating the SDK, it is crucial that you **do not** edit the sample scenes directly in their original location. The contents of this folder are managed by Unity and will be replaced when the SDK is updated.

1. **Locate the Sample Scenes:** Navigate to the Assets/Samples/MultiSet-SDK/x.x.x/Sample Scenes/ directory within your Unity project.
2. **Copy, Don't Edit Directly:** Copy any sample scene you wish to modify from the SDK's sample folder to a new folder within your project's Assets directory. For example, you can create a folder named Assets/MultiSetDemoScenes/ and paste the copied scene there.
3. **Modify the Copied Scene:** Open and edit the copied scene from its new location (Assets/MultiSetDemoScenes/).

By following this process, your modified scenes will be preserved and remain unaffected when you update the MultiSet SDK in the future.

{% hint style="danger" %}
Any modifications made directly to the sample scenes within the Assets/Samples/MultiSet-SDK/1.9.2/Sample Scenes/ directory will be lost when the SDK package is updated or re-imported.
{% endhint %}


---

# 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://multiset.gitbook.io/multiset/workflow/unity-sdk-update-guide.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.
