• Editor
  • Script to organize slots into bones of the same name

Hi,

I don't know if this is the right place to ask about this, but does anyone have any sort of starting point or any idea about this script that I have in mind? I usually do a lot of dragging and dropping of [slots] into the same-named [bones]. So if you have hundreds of these, this can be tiresome and time consuming. Is there any script that touches on the JSON export file and can do this sort of thing?

I'm using Spine 3.4.0.2.

Thanks!

Related Discussions
...
  • Изменено

Hi Erika,

I see, the tags however... But when exporting, the bones don't exist yet? What I do is, after exporting the PSD to PNG, I'll edit the JSON export, then copy a template bone set I have from another JSON file to the one here. Then I go about moving the bones in place on top of the parts, renaming and amending as necessary. Then once I'm happy with the bones, I just drag and drop the [slots] onto the same named [bones].

I suppose even the groups with [bone] tags in Photoshop could be tedious to create. In 4.0.36 you can select multiple slots and click New... Bone:

Изображение удалено из-за отсутствия поддержки HTTPS. | Показать


Boom, it creates a bone for each of the selected slots! :ohyeah:

Nate написал

In 4.0.36 you can select multiple slots and click New...
Boom, it creates a bone for each of the selected slots! :ohyeah:

NICE!

Thanks for the feedback! I can't make use of the solutions outright, however, if I were to parse the JSON, do you guys have tips on where I can start looking for answers? Like code snippets

Parsing JSON is usually best done with whatever programming language you are most familiar with. FWIW, here is some libgdx (Java) code that parses Spine JSON, manipulates values, and writes it again:
https://github.com/EsotericSoftware/spine-runtimes/blob/4.0/spine-libgdx/spine-skeletonviewer/src/com/esotericsoftware/spine/JsonRollback.java

Thanks for that Nate! You got one for Javascript?

I don't, sorry, but JSON is a subset of JavaScript and so very easy to parse there. You'll still have to work out how to read the file and write it again. That's probably pretty easy using node.js (and maybe TypeScript instead of JavaScript).