- Editado
UI SkeletonGraphics Performance?
Hi Herald,
Quick question. Is there any performance comparison between SkeletonGraphics and SkeletonAnimation? Does SkeletonGraphics add any performance baggage given that it is UI? ( WillRenderCanvases or additional drawcalls )
Thank you, Marek.
Hi Marek. Basically SkeletonGraphic and SkeletonAnimation will not differ much in terms of any "bad general overhead", however it might be interesting to do some stress tests on your target device. For example a quick test of 55 animated Raptor skeletons resulted in 7.3ms per frame according to the Stats view, whereas the same number of SkeletonGraphic
objects results in 8.0ms per frame on my local PC. While the fps is actually a bit worse at SkeletonGraphic
, it displays Batches: 3, Set pass calls: 3
, while with SkeletonAnimation
it displays Batches: 55, Set pass calls: 3
. That is under the assumption that you place all SkeletonGraphic
objects under one Canvas. If every Raptor has it's own Canvas, Batches
will be increased to 55
, duration per frame to about 9.0ms.
So in short: it will most likely depend on your target device and your setup, and the best way will be to do some short testing on-device. Only measurement will tell the truth .
Oh yes I did that test as well. Ok will keep you updated if we find anything UI non performant.