• Runtimes
  • [Cocos2dx] Skeleton Render Separator for Cocos2dx

  • संपादित
Related Discussions
...

Hi, our project needs to place an scene object between a Spine character, just like "Skeleton Render Separator" in Unity.
At first, we tried to control attachment's visible or slot's opacity in-game, hide the unneeded parts in front and back parts, but Spine animation will override the control..., "Skeleton Render Separator" in Unity seems to achieve this through mesh, but I couldn't found something like SkeletonRendererInstruction or Submesh in spine-cocos2dx runtimes. Any advice to achieve this feature in Cocos2dx?
Thanks!

( Our game needs 3 Spine characters seat on one table. And some parts in front of the table, some parts back of the table. eg. hands above the table and body under the table.)

  • Cocos2dx Version is v3.15
  • I'm an animator and English is not good. :whew:

The problem is that it's hard to intermingle rendering of nodes in Cocos2dx. We actually use our own batching mechanism (similar to Unity) to draw skeletons more effectively, however, intermingling rendering of parts of nodes isn't as straight forward.

Your initial approach (making some slots invisible) was actually quite spot on, however, you'll have to modify SkeletonRenderer a little.

The method to fix up is SkeletonRenderer::render. There, we walk through the slots, in the current draw order, and assemble the mesh(es) needed for drawing spine-runtimes/SkeletonRenderer.cpp at 3.6

You could add a method on SkeletonRenderer that lets you set the slot indices or names of the start and end slots, you want to draw. In the render method, you then iterate through the slots. Until the start slot is iterated over, you simply skip all slots up until that point. Once the start slot is iterated over, you let the normal rendering logic in that loop execute. Once you hit the end slot, you can break out of that loop.

With this, you can selectively draw a range of slots at runtime depending on your needs. You can then use 2 SkeletonRenderer nodes, one for the front slots and one for the back slots, and squish any other node you want between those two in your scene graph.

I've created an issue here [cocos2d] add SkeletonRenderer::setSlotRange(startSlot, endSlot) to render only slots in that range · #1075, if I find some time I'll try to get this implemented this week.

badlogic लिखा

I've just implemented this as a fun little exercise 🙂 See spine-runtimes/SkeletonRendererSeparatorExample.cpp at 3.6 for an example!

:clap: :clap: :clap: Wow! You are FANTASTIC! We will give it a try, thank you very very much! :yes:


Our programmer updates your new runtimes and it works nice!! You are a great help, badlogic! :rock: :rock:

Glad I could help! Thanks for proposing the feature.