- Editado
Small mistake when generating Skeleton JSON
It's not something huge, and I believe most people didn't notice, but on the current version, 1.9.01, when you export a skeleton's JSON, if there's any attachment with no image set in an animation, it's name on the JSON will be exported without quotes, eg:
"mouth": {
"attachment": [
{ "time": 0, "name": null }
]
}
The null is not between quotes, what raises an error on JSON parsers (noticed this while using Unity [spine-csharp]). The exporter just needs to put the null keyword between quotes, as a string:
"mouth": {
"attachment": [
{ "time": 0, "name": "null" }
]
}
After fixing this by hand on the file, the animation behaves as expected and there's no error when importing it.
You guys are awesome for maintaining such great software/art :heart:
Thank you for notifying us of this Will be fixed when Nate is back from vacation.
The value null
without quotes is valid according to the JSON spec:
http://json.org/
A value can be a string in double quotes, or a number, or true or false or null, or an object or an array.
If a JSON parser doesn't support it, the parser is wrong.