i have a mesh object i'd like to render a few hundred times at different parts of the screen.
i can easily clone the game object and it works, but i'm worried about the possible overhead this incurs.
in regular OpenGL i'd just set the VertexBuffer once and then call DrawTriangles() or whatever multiple times.
is unity smart enough to do something similar under the hood,
or is the mesh being sent across to the GPU once for each clone ?
is there something in the particle system which might be useful ?
↧