Hi everyone,
Just wondering if the following is possible;
I have a pooling system which is used for smoothing out loading times between different levels, meaning everything is instantiated in advance.
the levels we generate are procedural, and have either an endless or a fixed length size.
When the level is of a fixed size, I can enable static batching to merge together pieces which are similar so the overall performance is better. The issue comes when cleaning up that level, adding it back to the pooling system and wanting to re-use it.
is there a way of basically removing the static batching from objects when I don’t need it anymore?
I can see the components on the objects which is generated when I enable the static batching. Would it be as simple as clearing that component somehow? Is the new mesh generated accessible somehow for me to delete?