@@ -27,46 +27,48 @@ This package allows to create and use generic ScriptableObjects and MonoBehaviou
27
27
28
28
:heavy_exclamation_mark : Before installing the package, please disable the ** Assembly Version Validation** option in ** Player Settings** .
29
29
30
- ### OpenUPM
30
+ ### Install with OpenUPM
31
31
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:
33
33
34
- ```
35
- openupm install com.solidalloy.generic-unity-objects
36
- ```
34
+ ``` openupm install com.solidalloy.generic-unity-objects ```
37
35
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:
39
37
40
38
``` json
41
39
"scopedRegistries" : [
42
40
{
43
41
"name" : " package.openupm.com" ,
44
42
"url" : " https://package.openupm.com" ,
45
43
"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"
51
47
]
52
48
}
53
49
],
54
50
"dependencies" : {
55
51
"com.solidalloy.generic-unity-objects" : " 2.16.0"
56
52
},
57
- ```
58
53
59
- ### Git URL
60
-
61
- Project supports Unity Package Manager. To install it as a Git package do the following:
54
+ ```
62
55
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** .
70
72
71
73
## Generic ScriptableObject Usage
72
74
0 commit comments