Should I use Spine for everything? (SOLVED)

Actually the biggest performance drawbacks you might encounter lies in using both Sprites and Spines in a mixed manner.
Simple Spine animations (like 1 bone and some translations or flipbook animations) has very little overhead and will not be a bad alternative to simple Sprite animations.

The problem you might wind up in is if you mix Sprites and Spine in the draw order you would like them to be.
They are two different objects with two different materials and will break the batch as soon as it switches between sprite <–> spine.
I had the same fear using too many Spine objects for simple stuff but performance actually increased when reverting to only using Spine instead of Sprites on some objects.

BUT: If you know that you have a lot of objects that all together will be sprites and will be rendered in the same batch, sprites still will be a little bit faster.

Hope it helped a little bit… otherwise just ask.

/Andreas

1 Like