The hierarchy of skins is not the same:
json
skins": [
{
"name": "skinName",
"attachments": {
"slotName": {
"attachmentName": { "x": -4.83, "y": 10.62, "width": 63, "height": 47 },
...
},
vs (my json export from photoshop):skins": [
{
"name": "skinName",
"attachments": {
"slotName": {
"attachmentName": { "x": -4.83, "y": 10.62, "width": 63, "height": 47 },
...
},
json
"skins": {
"default": {
"slotName": {
"attachmentName": { "x": 346, "y": -395.5, "width": 122, "height": 241 }
},
This is a huge pint to handle both structures, could you update the photoshopToSpine script to match the same architecture ? "skins": {
"default": {
"slotName": {
"attachmentName": { "x": 346, "y": -395.5, "width": 122, "height": 241 }
},
Thanks in advance.