What is the most efficient way to render a billboard in Unity?
In order to apply a texture to something must it be a GameObject with a Mesh component? In which case, is my best bet to create a prefab of a Plane with the given texture and Instantiate(...) it at runtime? Or is there some sort of "billboard" primitive I should use instead?