The issues you're experiencing with depth occlusion in Unity when using Spine skeletons are likely due to the inherent challenges of rendering semi-transparent objects and the way Unity handles depth sorting. In Unity, transparent objects are typically rendered in a back-to-front order, which can conflict with the Z-buffer's depth sorting, especially when using shaders that write to the depth buffer. This is a common issue with alpha blending, as described in the spine-unity Rendering documentation.
Reverse Z-Depth Issue: The reverse relationship you're seeing might be due to the way Unity's transparency sorting works. Unity sorts transparent objects based on their distance from the camera, which can lead to unexpected results if the Z-axis is used for depth sorting. This is compounded by the fact that Spine's rendering order is determined by slot draw order, not Z-depth.
Shader Modifications: Your attempts to modify the shader with different ZTest configurations and depth-only passes are valid approaches. However, the fundamental issue is that depth writing with transparency is inherently problematic. The spine-unity Rendering documentation suggests using alpha blending without depth writing for clean semi-transparent transitions.
SkeletonMecanim and Z-Ordering: The SkeletonMecanim component itself does not inherently reverse Z-ordering. The issue is more likely related to how Unity handles transparency and depth sorting. You might consider using Unity's
SortingGroup
component or adjusting theAdvanced - Z-Spacing
setting to help manage draw order.Performance Concerns: Using complex shaders with multiple passes can impact performance, especially on lower-end devices. Simplifying the shader and avoiding unnecessary depth writes can help maintain performance.
Elegant Solution: A more elegant solution might involve using Unity's built-in sorting layers and order in layer settings to manage draw order, combined with careful management of transparency and depth writing in your shaders. You could also explore using a custom component like your SpineZOrderCorrector to adjust draw order dynamically.
In summary, achieving correct occlusion with transparency in Unity requires careful management of draw order and shader settings. Using Unity's sorting layers and avoiding depth writes in transparent shaders can help achieve the desired results.