How can I have a 3D model above Screen Space - Overlay UI?

I don’t want to have my non-3D UI elements in Screen Space - Camera. All my UI elements are on overlay UI and my 3D model is on Screen Space - Camera. Is there any way to show the 3D model above overlay UIs? My background image would be part of overlay UI, which hides my 3D model. I want to avoid this.

Hello @ssrao29 ,

Overlay UI is meant to be above every 3D model. If you want your 3D model to display on top of it, it needs to be part of it. The best way to achieve this is to add a RawImage component in your Overlay UI, and assign it a RenderTexture which should target your 3D model.

Hope this helps!