Game Pausing

Hey, when i am going to desctop, and my game is in windowed mode, why it’s become paused? can game updating when i using other windows and the game in the same time? Thank you.

This is by design. Unity stops rendering frames when the window loses focus (when you click on something else). I think they did it this way to make it possible to Alt-Tab out of fullscreen games without continuing the game in the background.

You can disable it by setting:

Application.runInBackground = true;

This makes Unity keep rendering frames even when application is minimized.