Find render textures with typ

When starting my game I get in the server mode a number (30+) of generic messages “Requested RenderTexture format R8 UNorm (5) is not supported on this platform, …”
I understand why Unity supports a limited number of textures, but I’d like to find those among hundreds of textures that are problematic. Unfortunately, Unity hides the filenames.

Is there an easier way to find the problematic files than manually checking what appears to be thousands of files?

Maybe even in a newer version Unity throw the message with a filename. That will help a lot.

Unity version: 2019.1.14f

That does not sound like a broken file. You most likely have some code that needs render textures and they fail to create them on the headless server since it has no graphics device.

1 Like