What is the best free Spine Editor for Phaser?

Glad to see Phaser support the Spine Feature and provide the Spine plugin by [Esoteric Software]. However, it required a license to use. And I find a free one below:

Unfortunately, the above editor does not support the latest Mac OS, I would like to ask if there is another free alternative software?

Thanks

The Spine plugin uses the official runtimes, which require your to have a license. Even if you export a Spine-compatible file from another editor, you cannot use Phaser’s Spine plugin.

That said, I’m not too familiar with alternative animation systems. If you want to use them in Phaser without relying on the Spine runtimes, however, you’d need to build your own plugin unless one already exists.


[DragonBones TypeScript / JavaScript Runtime]

According to the description of the DragonBonesJS, it seems this is a standalone plugin(and runtimes) for phaser instead of the Phaser Build-in Spine Plugin?

Looks like it does ship with a Phaser plugin, yeah. You should be able to just load it and use DragonBones objects.

I didn’t find any examples of usage. How to load and place a DragonBones object in phaser 3?

@Coatl
http://dragonbones.com/en/index.html

  1. Install dragonbones, Edit animation and Export JSON File


2. Follow the above demo

Oh, there is actually a usage… thanks! Anyway, I found this, which helped me even better. (I use webpack.) Now everything works fine on me!

I have a question about DragonBones themselves, if you are not against :slight_smile:
It’s a great tool, but something seems to be missing. I’d like to use bone nesting the same way as was in Flash nested movieclips. Namely: when I have a bone with 10 frames and the whole animation with 20 frames, the bone should loop twice during the whole animation, and not once and then stop. Is there any way to do it?

Actually, I am not the expert of DragonBones and Flash. Have you tried to edit the frame in Timeline Panel? It seems it is reasonable to show it once rather than twice. Is it a bad idea to copy 10 more frames in the timeline on your case?

Copying 10 more frames is not a good idea for my case. I need an animation that loops independently of its parent node.

However, I looked somewhat deeper and found a solution! There are actually movieClips in Dragon Bones. You can create them in the library and then add them to the armature. Works great, even when exported to Phaser!