0
votes

I spawn the prefab in a gameobject and that gameobject is a child of UI Image what I'm trying to accomplish is display the prefab infront of a UI Image. I've tried making z position of gameobject to negative but nothing happens. I can't place the sorting layer of UI Image cause it doesn't exist. What should I do? Is this even possible?

enter image description here

Update

Tried adding second camera. I made gameobject layer to SecondCam. Change settings of second camera to depth only and it's culling mask to SecondCam only then it's layer to SecondCam also. Change settings of main camera culling mask to everything except SecondCam. But this doesn't work, Have I done something wrong? enter image description here

Second Camera settings enter image description here

Main Camera settings enter image description here

2

2 Answers

0
votes

If your Gameobject is not one of the UI components you may need to give it another layer and render it with another camera with depth property higher than the UI camera.

You can change the sorting layer on prefabs or any object created on runtime.

0
votes

If your UI canvas is set to screen overlay, then it with ALWAYS render on top. You have to use a screen space or world space UI, along with Dave's answer.