How to run other executable without interromping the main scene ?

Her my problem.

I have a Scene which content a GameObject. In this last one, i make a script that run an execute with Process methode. But when ouside executable is running, my Scence is on mode stand by ?

How can i run both progamme ?

Thanks a lot.

By default, Unity pauses the player when it loses focus. To change this behaviour, set:

Application.runInBackground = true;