System.Text.Json serializers for Unity.Mathematics types, serializing data as arrays This package also contains the following dependency assemblies:* UnityMathematics.NoDeps@1.3.2
npm install external.chris.kagekirin.helmich.unitymathematics.text.json.arraynotation.amalgamateRepacked from NuGet using NuGettier v0.4.16+c6c6e46794fb522e40cf28c5ceccabe0607359f5
System.Text.Json serializers for Unity.Mathematics types, serializing data as arrays
This package also contains the following dependency assemblies:* UnityMathematics.NoDeps@1.3.2
---
This project provides JSON serialization for Unity.Mathematics types
based on System.Text.Json.
``bash`
dotnet add package UnityMathematics.Text.Json --version x.y.z
`xml`
`xml`
TBD once implementation is added.
PRs are welcome.
Please refer to COLLABORATION.md for more details.
This is the main package, supporting both array and object notation,
at the expense of a slightly more convoluted design.
If your requirement is to only support a single notation style,
the following standalone packages might be what you want.
The package for using _only_ JSON Array notation, as in the example below.
`json`
{
"vector": [1.43, 2.09, 43.9]
}
The package for using _only_ JSON Object notation, as in the example below.
`json``
{
"vector": {
"x": 1.43,
"y": 2.09,
"z": 43.9
}
}