I am trying to draw some 3d mesh between sprites.
But there is no z-value that I can use.
The drawing order that I want is:
[Label-Background]
[Label-Text]
[3D Mesh]
[Other UIs]
But the drawing order that NGUI did is:
[Label-Background]
[3D Mesh]
[Label-Text]
[Other UIs]
I sorted all the widget by transform.z. but it doesn't work.
What should I do?