- Home /
Question by
snezhok_12 · Sep 18, 2012 at 01:25 PM ·
fpsperformance
How can I easily implement performance statistics grabber?
I need to implement performance statistics grabber on client side (for example FPS counter).
I have some game and I want to send FPS from each user's machine to my server.
Is there are any libraries for this?
Thanks a lot
Comment
Answer by whydoidoit · Sep 18, 2012 at 01:26 PM
You can work out the FPS of your game loop from any Update call:
var fps = 1/Time.deltaTime;
Ok, thats fine, but is there a library that can provide me more detailed statistics?
NuTracking Library, Lumos Game Analytics, Analytics by Different $$anonymous$$ethods.
I think that is not it. I want for example on ever frame log render time, from all of user's machines, and want to make compare analisys of where low points on both of it... And Google Analitycs isn't able to build such diagram, isn't it?