hi guys
how can i have my 2d tank in front of a 3d model? is it difficult to do?
hi guys
how can i have my 2d tank in front of a 3d model? is it difficult to do?
Just looked in the 3d view, it actually works as suspected.
Three (3) ways that Unity draws / stacks / sorts / layers / overlays stuff:
In short,
The default 3D Renderers draw stuff according to Z depth - distance from camera.
SpriteRenderers draw according to their Sorting Layer and Sorting Depth properties
UI Canvas Renderers draw in linear transform sequence, like a stack of papers
If you find that you need to mix and match items using these different ways of rendering, and have them appear in ways they are not initially designed for, you need to:
There may be more than one solution to try.
Additional reading in the official docs:
Thanks Kurt.