Hello!
I'm trying to convert a spine which uses .json to the format that uses .skel and I don't have the project anymore, only the exported file.
Using Windows Powershell and Esteric's spine command line, those were my steps:
I used the old spine animation to create a spine project:
& 'C:\Program Files\Spine\Spine.com' -u 3.7.xx -i old_spine.json -o old_spine.spine --import;
When I opened this project, the animations were there but the images couldn't be found.With the spine project created, I created the export.json below to use as a configuration file
{
"class": "export-binary",
"open": false,
"extension": ".skel",
"prettyPrint": false,
"nonessential": true,
"cleanUp": true,
"packAtlas": null,
"packSource": "attachments",
"packTarget": "perskeleton",
"warnings": true
}And then used this command to create the .skel format:
& 'C:\Program Files\Spine\Spine.com' -u 3.7.xx -i old_spine.spine -o . -e export.json ;
At this step, the powershell terminal showed that the animation's images could not be found.After the conversion ended, I tried to use it on Godot 3.5.3 using the node "SpineSprite" but I got an error saying the .skel file could not be loaded.
Could anyone share a light in this predicament? =p