Menu Close
How Can We Help?
You are here:
Print

Disable EpicGamesLauncher when closing the editor

Everytime you open the UnrealEditor it launches the EpicGamesLauncher.exe too, to disable this behaviour:

Engine Version : 4.23.1
File : \Unreal\UE_4.23\Engine\Source\Editor\UnrealEd\Private\EditorEngine.cpp
Line : 617

Comment out this lines:
    ILauncherPlatform* LauncherPlatform = FLauncherPlatformModule::Get();
    if (LauncherPlatform != NULL )
    {
      FOpenLauncherOptions SilentOpen;
      LauncherPlatform->OpenLauncher(SilentOpen);
    }
 
To:
    //ILauncherPlatform* LauncherPlatform = FLauncherPlatformModule::Get();
    //if (LauncherPlatform != NULL )
    //{
    //  FOpenLauncherOptions SilentOpen;
    //  LauncherPlatform->OpenLauncher(SilentOpen);
    //}

Other engine versions is similar, search for “ILauncherPlatform” .

Comments are welcome.