Hi,
Some time ago I used static sprite batcher to optimize creation and drawing of multiple static sprites which previously had separate game objects.
Now I am looking to do it with another group of sprites, but my problem is z-order, which rules out static sprite batcher:
- we are using z-order not layers to determine drawing order
- static sprite objects drawing order can be mixed with dynamic ones (which need separate game objects).
Any tips how this could be done with 2dtoolkit? My goal is to get rid of myriad of game objects, reducing draw calls is not important here.
Each of my sprites would have scale rotation and position and possibly a collider.
Maybe sprite batcher could be hacked to do it? (separate renderers?)
Thanks in advance,