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:
Add the following to your project's manifest.json file :
{ "dependencies": { "com.unity.digital-twins.storage": "0.2.1", // . . . } }
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:
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", // . . . } }
Open the Unity Project ; the Storage package and all its dependencies should be resolved (you need the VPN enabled to access artifactory).