Skip to content

Instantly share code, notes, and snippets.

@phi-lira
Last active April 6, 2020 12:12
Show Gist options
  • Save phi-lira/7bc0109a3bbb2bc2ef132cd05bb26f14 to your computer and use it in GitHub Desktop.
Save phi-lira/7bc0109a3bbb2bc2ef132cd05bb26f14 to your computer and use it in GitHub Desktop.
Example of manifest pointing lightweight and core SRP packages to a local folder.
{
"dependencies": {
"com.unity.render-pipelines.core": "file:/users/felipe/Development/Graphics/com.unity.render-pipelines.core",
"com.unity.shadergraph": "file:/users/felipe/Development/Graphics/com.unity.shadergraph",
"com.unity.render-pipelines.universal": "file:/users/felipe/Development/Graphics/com.unity.render-pipelines.universal",
}
}
{
"dependencies": {
"com.unity.render-pipelines.core": "file:../../../com.unity.render-pipelines.core",
"com.unity.shadergraph": "file:../../../com.unity.shadergraph",
"com.unity.render-pipelines.universal": "file:../../../com.unity.render-pipelines.universal",
}
}
{
"dependencies": {
"com.unity.shadergraph": "file:C:\\Development\\Graphics\\com.unity.shadergraph",
"com.unity.render-pipelines.core" : "file:C:\\Development\\Graphics\\com.unity.render-pipelines.core",
"com.unity.render-pipelines.universal" : "file:C:\\Development\\Graphics\\com.unity.render-pipelines.universal",
}
}
@phi-lira
Copy link
Author

Examples of Unity package manager manifest files with relative and full paths on Windows and Mac.
To be used with Unity 2018.1+ and SRP from Github.

How to use it:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment