• Runtimes
  • [Unity3D] Per Bone Sorting Layer Order

Hey fellow unity + spine developers.

In my animation, there are two bones that I want to be on a Sorting Layer Order 0, and the remaining on sorting layer 2, so I can insert a floor/sprite with order 1 (between some bones in the animation).

Due to Unity's Sprite limitations, I understand why Spine uses a mesh renderer for the whole animation, but in this case there's no way to alter just some sprite's sorting layer. Is there a way to, at least, separate each sprite on it's own renderer so I could make this setup I want?
I believe I would need to write my own runtime, right?

Have anyone already done this?

Thanks for your attention 🙂


I know I could reference this floor on the spine animation itself, but that's not desirable in my current project :X

Related Discussions
...

1) In Spine's system, images are assigned to slots, and slots are ordered in a list. Their order in the list determines the order they are drawn. Bones aren't really related to this. But I get what you mean.

2) Spine-Unity uses a MeshRenderer to facilitate the FFD and skinning features.

3) The only reason it was programmed to use only one Renderer was to minimize overhead, though Nate has mentioned that he's open to an alternative code for rendering 'cause we really haven't seen how much of an effect on performance it has if each slot has its own renderer (and therefore, it's own GameObject and Transform), or what grouping scheme could be made.
It's just that he has to take care of the promised standard features and other runtimes too so it's kinda up to us if we need something specific until it gets declared as a feature and implemented ('cause other runtimes can't solve this draw order problem yet either).

(@[borrado], Shiu) This gives me an idea. In Spine Editor (and the Spine system in general), what if you could add a marker to the draw order list that signifies where the rendering in-game can be split. Then runtime code can know where to split the skeleton into two batches of slots to render, and users can squeeze in rendering between those batches.

So instead of limiting the functionality to a SkeletonAttachment, anything renderable can be rendered between everything before that marker and everything after that marker. Just a thought.

In Unity, this might signify a use of an extra Renderer whose Sorting Layer/Order might be settable separately. I'm not sure if this somehow works for other runtimes, though I do think it's hackable into Spine-Unity just with currently exportable Spine skeleton data. The marker would just be a specially named slot.

4) Others have wondered how to do this too but there hasn't been a definitive best way. Look up the user who tried to do stuff like animate the character riding on a horse. XD One of the solutions was to split the skeleton manually. That one's a bit messy to do.

Interesting idea. You can easily do it by changing the renderer slightly. Just make it only render the slots you specify, or all slots up to a specific one (your market slot), or all slots after a specific one.

I kinda like the idea, it reminds me over overrides in Softimage which I've used a lot 🙂

11 días más tarde

i have the same requirement.
Thanks for the hint.
i'll take a closer look at changing the renderer when i next get a spare sec.