Diego Reis
Diego Reis

Reputation: 30

Editor Loop delay. Is it a problem for my game?

I'm new on that thing of analisys profile of Unity. I decided to see if my player is dropping too much FPS and the I found this. Will that be a problem for my game? I don't know how that system works, but I guess 8.35 is a high number...

Analisys profile

Upvotes: 2

Views: 11078

Answers (1)

Thomas
Thomas

Reputation: 1265

No it's not.

The editor loop is how long the unity editor took.

The player loop is (roughly) the performance of your game. And the big green part looks like the WaitForTargetFPS call to me. Though to tell for sure you'd have to expand the player loop and see.

If you want to measure the actual performance of your game accurately you have to make a development build and profile that one (you can select the debugging options for this in the build dialog).

Further reading: profiler documentation

Upvotes: 5

Related Questions