Ive been working on a Unity project and we have recently realized we should be using the Universal Render Pipeline (URP) instead of HDRP. I've been trying to find a way to make the switch. However, when I switch to use URP, I can't get any textures to render in game for existing scenes. The textures do appear in the scene view, it's only in game mode that they disappear.
I've been tinkering with this for a while, and still haven't learned much, but I'll provide what I can.
Scene View: Objects are visible in the scene view, and the camera preview
Game View: In game view none of the objects render. UI elements still work though.
Let me know if there is any more useful info I can provide. SO wanted to mark it as spam so I had cut some of my info out. Thanks!
EDIT: I have determined that the problem involves having multiple cameras in the scene. A camera for the UI is culling all the other stuff. Looking into how to fix this now...
Okay, I solved it. Turns out that having multiple cameras in a scene works differently with URP. I could solve the problem by disabling the additional camera, which was essentially overriding the main camera. Instead, looks like I need to stack cameras so they can render into the same output.