XiJSON
XiJSON, is a simple serialization for Unity.
com.hww.xijson 
Install via UPM
Add to Unity Package Manager using this URL
https://www.pkglnk.dev/xijson.git#upm README Markdown
Copy this to your project's README.md
## Installation
Add **XiJSON** to your Unity project via Package Manager:
1. Open **Window > Package Manager**
2. Click **+** > **Add package from git URL**
3. Enter:
```
https://www.pkglnk.dev/xijson.git#upm
```
[](https://www.pkglnk.dev/pkg/xijson)README
XiJSON Stupid simple serialization for Unity 3D
Simple asstes renaming tool by hww
Introduction
Fast data serialization solution for Unity. Has been used in two commercial products for redemption machines.
Uses Unity's built-in JSON serializer, but does simple data sanitization using regular expressions.
Install
The package is available on the openupm registry. You can install it via openupm-cli.
openupm add com.hww.xijson
You can also install via git url by adding this entry in your manifest.json
"com.hww.xijson": "https://github.com/hww/XiJSON.git#upm"
Usage
For MonoBehaviour, just inherince your class from JsonBehaviour. For ScriptableObject, just inherince from JsonObject. After that the importing and exporting will read and write data to the StreamingAssets folder.
/StreamingAssets/XiJSON/Assets/ // For the all assets
/StreamingAssets/XiJSON/{SceneName}/ // For a scene with name
No comments yet. Be the first!