Skip to content

Instantly share code, notes, and snippets.

@cppleon
Forked from roydejong/progrids-install.md
Created December 4, 2019 07:55
Show Gist options
  • Save cppleon/26a7c93258dce99b9af275e47a0142c3 to your computer and use it in GitHub Desktop.
Save cppleon/26a7c93258dce99b9af275e47a0142c3 to your computer and use it in GitHub Desktop.
Installing ProGrids v3 in Unity 2018.3

The problem

ProGrids seems to have disappeared from the Unity Package Manager as of Unity 2018.3.

It is possible to install ProGrids v2 via the Asset Store, but it's an old and incompatible version.

The solution

To install, you need to import the package manually:

  1. Navigate to your project directory on disk.
  2. Open the manifest.json file in the Packages directory for editing.
  3. Edit your file to include the new dependency and registry, as below.

The finished json file should look like this, with your own existing dependencies also listed under dependencies:

{
  "dependencies": {
    "com.unity.progrids": "3.0.0"
  },
  "registry":"http://staging-packages.unity.com"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment