This question is more for someone with intimate knowledge about the internals of the Unity graphics engine.
I am planning on passing multiple meshes to Graphics.DrawMesh, and I want to know whether the order in which the meshes are passed to Graphics.DrawMesh governs the order in which the meshes are rendered by the engine. Or is the order they’re rendered controlled by some other factor? Or is it completely arbitrary, and not something I can control?
The meshes in question contain a lot of transparent triangles and don’t read or write to the z-buffer. So the order in which they’re drawn is extremely important.