Skip to content

Commit 0b2f8a2

Browse files
committed
doc: Add dependency graph and publish action.
1 parent e811a5d commit 0b2f8a2

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

README.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,14 @@
22

33
*Universal Render Pipeline support for the Visual Pinball Engine.*
44

5-
## Goal
5+
## Where are we?
66

7-
This is an [UPM package](https://docs.unity3d.com/Manual/CustomPackages.html) with a dependency to Unity's
8-
[Universal Render Pipeline](https://docs.unity3d.com/Packages/[email protected]/manual/index.html).
9-
If added along with the [VPE package](https://github.com/freezy/VisualPinball.Engine) to a project, VPE will
10-
use this package for dealing with rendering.
7+
![image](https://user-images.githubusercontent.com/70426/102701996-adc9b000-425d-11eb-87df-6a2e327a504a.png)
118

12-
It allows us to implement multiple render pipelines without conflicting dependencies.
9+
## Notes
1310

14-
## Usage
15-
16-
Create a new URP project, import VPE and this package. Don't forget to set `ENABLE_HYBRID_RENDERER_V2`, otherwise
17-
you won't see anything rendered in play mode.
11+
Don't forget to set `ENABLE_HYBRID_RENDERER_V2`, otherwise you won't see anything rendered in play mode.
1812

1913
## License
2014

21-
[GPL-3.0](LICENSE)
22-
15+
[GPL-3.0](LICENSE)

package.json

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"name": "org.visualpinball.engine.unity.urp",
3-
"version": "0.1.0",
3+
"version": "0.0.1-preview.0",
44
"displayName": "Visual Pinball Engine (URP)",
5-
"description": "Adds support for the Universal Render Pipeline.",
5+
"description": "Universal Render Pipeline support.",
6+
"keywords": [ "Unity", "URP" ],
67
"unity": "2020.2",
78
"unityRelease": "0b12",
89
"dependencies": {
9-
"com.unity.render-pipelines.universal": "10.2.1"
10+
"com.unity.render-pipelines.universal": "10.2.1",
11+
"org.visualpinball.engine.unity": "0.0.1-preview.1"
1012
},
1113
"author": "freezy <[email protected]>",
1214
"contributors": [
@@ -19,5 +21,12 @@
1921
"Kleis Auke Wolthuizen <[email protected]>",
2022
"Eli Curtz <[email protected]>",
2123
"Pandeli"
22-
]
24+
],
25+
"repository": {
26+
"url": "https://github.com/VisualPinball/VisualPinball.Unity.Urp.git",
27+
"type": "git"
28+
},
29+
"publishConfig": {
30+
"registry": "https://registry.visualpinball.org"
31+
}
2332
}

0 commit comments

Comments
 (0)