docs.unity3d.com
  • Manual
  • Scripting API
  • Changelog
  • License

    • Storage
      • Installation
      • Getting started
    • Use Cases
      • Getting workspace and scene information
    • Samples
      • Getting workspace and scene information

    Installation

    This section outlines how to install Storage in your Unity project.

    Prerequisites

    • A Unity version of 2021.3 or later
    • A Unity account (in order to generate an identifier for your app)

    Install Storage

    Unity Package Manager

    This solution is using Unity's standard Unity Package Manager (UPM). The Storage package will start being available only as an experimental package. Because of this, it will not be possible to install it through the Editor's package manager UI. Instead, you will need to update the project's manifest.json file manually, like so :

    To install the package, see the following steps:

    1. Add the following to your project's manifest.json file :

      {
       "dependencies": {
         "com.unity.digital-twins.storage": "0.2.1",
         // . . .
       }
      }
      
    2. Open the Unity Project ; the Storage package and all its dependencies should be resolved.

    Internal Artifactory

    This solution relies on Unity's internal artifactory. We keep this solution documented because it will be available earlier than the UPM.

    To install the package, see the following steps:

    1. Add the following to your project's manifest.json file :

      {
       "scopedRegistries": [
         {
           "name": "Artifactory",
           "url": "https://artifactory.prd.cds.internal.unity3d.com/artifactory/api/npm/upm-candidates-master/",
           "scopes": ["com.unity.digital-twins"]
         }
       ],
       "dependencies": {
         "com.unity.digital-twins.storage": "0.2.1",
         // . . .
       }
      }
      
    2. Open the Unity Project ; the Storage package and all its dependencies should be resolved (you need the VPN enabled to access artifactory).

    Back to top Generated by DocFX
    Copyright © 2023 Unity Technologies — Terms of use
    • Legal
    • Privacy Policy
    • Cookies
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)
    "Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
    Generated by DocFX on 18 October 2023