Skip to content

Commit 58c3812

Browse files
committed
docs: Updated installation instructions
1 parent 349d9c1 commit 58c3812

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

README.md

+24-22
Original file line numberDiff line numberDiff line change
@@ -27,46 +27,48 @@ This package allows to create and use generic ScriptableObjects and MonoBehaviou
2727

2828
:heavy_exclamation_mark: Before installing the package, please disable the **Assembly Version Validation** option in **Player Settings**.
2929

30-
### OpenUPM
30+
### Install with OpenUPM
3131

32-
Once you have the OpenUPM cli, run the following command:
32+
Once you have the [OpenUPM cli](https://github.com/openupm/openupm-cli#installation), run the following command:
3333

34-
```
35-
openupm install com.solidalloy.generic-unity-objects
36-
```
34+
```openupm install com.solidalloy.generic-unity-objects```
3735

38-
Or if you don't have it, add the scoped registry to manifest.json with the desired dependency semantic version:
36+
Or if you don't have it, add the scoped registry to manifest.json with the desired dependency semantic version:
3937

4038
```json
4139
"scopedRegistries": [
4240
{
4341
"name": "package.openupm.com",
4442
"url": "https://package.openupm.com",
4543
"scopes": [
46-
"com.solidalloy.util",
47-
"com.solidalloy.unity-dropdown",
48-
"com.solidalloy.type.references",
49-
"com.solidalloy.generic-unity-objects",
50-
"com.openupm"
44+
"com.solidalloy",
45+
"com.openupm",
46+
"org.nuget"
5147
]
5248
}
5349
],
5450
"dependencies": {
5551
"com.solidalloy.generic-unity-objects": "2.16.0"
5652
},
57-
```
5853

59-
### Git URL
60-
61-
Project supports Unity Package Manager. To install it as a Git package do the following:
54+
```
6255

63-
1. In Unity, open **Window** -> **Package Manager**.
64-
2. Press the **+** button, choose "**Add package from git URL...**"
65-
3. Enter "https://github.com/SolidAlloy/SolidUtilities.git" and press **Add**.
66-
4. Do the same with three more packages:
67-
- https://github.com/SolidAlloy/UnityDropdown.git
68-
- https://github.com/SolidAlloy/ClassTypeReference-for-Unity.git
69-
- https://github.com/SolidAlloy/GenericUnityObjects.git
56+
### Install via Package Manager
57+
58+
Project supports Unity Package Manager. To install the project as a Git package do the following:
59+
60+
1. In Unity, open **Project Settings** -> **Package Manager**.
61+
2. Add a new scoped registry with the following details:
62+
- **Name**: package.openupm.com
63+
- **URL**: https://package.openupm.com
64+
- Scope(s):
65+
- com.openupm
66+
- com.solidalloy
67+
- org.nuget
68+
3. Hit **Apply**.
69+
4. Go to **Window** -> **Package Manager**.
70+
5. Press the **+** button, *Add package from git URL*.
71+
6. Enter **com.solidalloy.generic-unity-objects**, press **Add**.
7072

7173
## Generic ScriptableObject Usage
7274

0 commit comments

Comments
 (0)