When I import the following test JSON (exported from another test project), the animation info gets blanked out. In our project, we only use "attachment timeline" by changing the image to be shown for different frames and export <-> import doesn't work.
{
"bones": [
{ "name": "root" }
],
"slots": [
{ "name": "s1", "bone": "root", "attachment": "p11" },
{ "name": "s2", "bone": "root", "attachment": "p22" }
],
"skins": {
"default": {
"s1": {
"p1": { "width": 403, "height": 74 },
"p11": { "width": 696, "height": 35 }
},
"s2": {
"p2": { "width": 69, "height": 416 },
"p22": { "width": 18, "height": 464 }
}
}
},
"animations": {
"a1": {
"slots": {
"s2": {
"attachment": [
{ "time": 0, "name": "p2" }
]
},
"s1": {
"attachment": [
{ "time": 0, "name": "p1" }
]
}
}
},
"a2": {
"slots": {
"s2": {
"attachment": [
{ "time": 0, "name": "p22" }
]
},
"s1": {
"attachment": [
{ "time": 0, "name": "p11" }
]
}
}
}
}
}