In the built-in render pipeline, you can use the Billboard Renderer component with a Billboard Asset and it works great (assuming you’ve figured out how to bake a Billboard Asset and create a material with a suitable shader i.e. SpeedTree Billboard Shader - see this thread). I have done this and tested it, and it works fine.
Unity says here that the Billboard Renderer component works in URP (I’ve tried, it doesn’t), and in HDRP “only with VFX graph”. One problem is I can’t find any resources on how to implement the Billboard Renderer with the VFX graph (so any help here would be great), and another problem is that since I can’t get it to work in URP, I’m worried it won’t work in HDRP either despite what the above link says.
I even tried to workaround the Billboard Renderer - I found some threads about making billboards with Shader Graph ( here , here) as well as other resources such as here. I went even further than that and filtered through GitHub repositories to no avail. None of the solutions I have found work properly in HDRP (though some work in URP).
Now for some context: I am attempting to develop some tools that will enable developers to make huge open world games (will soon begin community building if you’re interested), and I have created an algorithm derived from the QuadTree data structure that breaks the game world into nodes (scenes) of different sizes, levels of detail, etc. and streams nodes based on the distance from the player camera. Long story short, distant parts of the world are large scenes consisting of imposters only, while nearby parts are smaller scenes with more detail. Without a proper way to render billboards/imposters in HDRP, this algorithm is almost pointless. Besides that, why would Unity expect any game to not use billboards/imposters for distant objects? It’s just a waste of resources.
To summarise, I have scoured the internet for days and have yet to find any method to implement imposters (like the Billboard Renderer does it) that works in HDRP or even URP (not including paid assets). There must be someone out there, even someone from Unity, that knows how to implement imposters/billboards in HDRP - or even URP?
If you have any ideas, please share them here!