How to check performance of the game in the device made in Unity 3d

I have made a game in Unity3D. I want to check all the performance related facts about my game.I want to deploy my game for android and iOS. further more currently i doesn’t have a pro licence of Unity(I have basic licence). If anyone have made any script related pls share with me and anybody have any idea please share.

Thanks in advance

If you want to see the fps(frames per second), you can use this,

http://www.unifycommunity.com/wiki/index.php?title=FramesPerSecond

Open the project in XCode and then set this attribute

ENABLE_INTERNAL_PROFILER=1

in the iPhone_Profiler.h file

[10082-screen+shot+2013-04-15+at+1.01.00+am.png|10082]

Now go to your console and you should see lots of important stats, including FPS.

Use the Internal Profiler. For Android:

  • First enable USB debugging in
    Developer Options in your mobile.
  • And then in Unity, enable Internal
    Profiler in Project Settings →
    Player → Other Settings.
  • Then connect your mobile to the computer and run adb logcat in Command
    Prompt or Powershell and start your game.

There you can see some of the performance information which are explained here:

  • run adb logcat -d > logcat.txt to
    save the logcat to a logcat.txt file
  • run adb logcat -c to clear the
    logcat

Happy programming :slight_smile: