Make you work with SerializeObject and SerializeProperty easier


Using the native Unity Package Manager introduced in 2017.2, you can add this library as a package by modifying yourmanifest.json file found at /ProjectName/Packages/manifest.json to include it as a dependency. See the example below
on how to reference it.
The package is available on
the npmjs
registry.
#### Add registry scope
```
{
"dependencies": {
...
"com.elestrago.unity.serialize-property-serializer": "x.x.x",
...
},
"scopedRegistries": [
{
"name": "eLeSTRaGo",
"url": "https://registry.npmjs.org",
"scopes": [
"com.elestrago.unity"
]
}
]
}
#### Add package in PackageManager
Open Window -> Package Manager choose Packages: My Regestries` and install package
Example of usage you can find in ExampleUsageTest.cs