Skip to content

3. Installation

3.1 Option A: AI-assisted manifest install (no OpenUPM required)

Use this option if you want Codex, Claude, Copilot, or another coding agent to install the SDK for you and update Packages/manifest.json directly. This path adds all required packages from Git URLs, so it does not require the OpenUPM scoped registry setup. Paste the following prompt:

Install the Snippets SDK by updating Packages/manifest.json.
Use this exact SDK package dependency:
- "com.snippets.sdk": "<insert link to the git URL found at https://app.snippets3d.com/integrations>"
Also add these dependencies if missing:
- "com.cysharp.unitask":
"https://github.com/Cysharp/UniTask.git?path=/src/UniTask/Assets/Plugins/UniTask"
- "org.khronos.unitygltf": "https://github.com/KhronosGroup/UnityGLTF.git"
Keep all existing dependencies unchanged.

3.2 Option B: Unity Package Manager install

3.2.1 Configure OpenUPM scoped registry

Required scopes:

  • com.cysharp.unitask
  • org.khronos.unitygltf

  • Edit > Project Settings > Package Manager

  • Add Scoped Registry: Name: OpenUPM URL: https://package.openupm.com Scopes: com.cysharp.unitask, org.khronos.unitygltf

Screenshot

Manual manifest.json example:

{
  "scopedRegistries": [
    {
      "name": "OpenUPM",
      "url": "https://package.openupm.com",
      "scopes": [
        "com.cysharp.unitask",
        "org.khronos.unitygltf"
      ]
    }
  ]
}

3.2.2 Install Snippets SDK package

Recommended: install from Git URL to get updates and keep team environments consistent.

Git URL method:

  1. Window > Package Manager
    • button
  2. Add package from git URL (find the URL at the integrations page)
  3. Paste SDK Git URL
  4. Install

Disk method (ZIP fallback):

  1. Download and unzip SDK outside Assets
  2. Window > Package Manager
    • button
  3. Add package from disk (download package at the integrations page)
  4. Select package.json

Screenshot

Copy git URL or download ZIP

Screenshot

Install Snippets SDK via git URL using Unity Package Manager


For better text quality and consistency:

  1. Window > TextMeshPro > Import TMP Essential Resources
  2. Confirm import

Screenshot

Importing TextMeshPro Essential Resources


3.4 Import sample scenes (optional)

  1. Open Package Manager and select Snippets SDK (after installing it)
  2. Open Samples tab
  3. Import Snippets Sample Scenes
  4. Open sample scenes and run Play Mode

Screenshot

Importing Sample Scenes & path to the Scenes after import


← Previous: Overview
Next: Initial Setup In Unity →