Is there a way to get the EXE of my game and execute it again with some launch parameters?
Hi,
To launch an exe from a script you need to use:
using System.Diagnostics
and then:
Process.Start();
Read this for more information: .net - Launching an application (.EXE) from C#? - Stack Overflow