Hello, CoolJosh. I can explain why. When you package your Unreal Engine project, you might notice that two executable files are generated:
-
Bootstrap Executable:
Located atWindowsNoEditor\YourProjectName.exe
, This small launcher conducts initial system checks and ensures that necessary prerequisites are installed before launching the main game. -
Main Game Executable:
Found atWindowsNoEditor\YourProjectName\Binaries\Win64\YourProjectName.exe
, this is the primary executable containing your game’s core functionality.
This structure is intentional, as the bootstrap executable enables a smoother user experience by managing setup tasks before launching the main game.
If you would like more information, I can provide you with the link regarding Packaging Unreal Engine Projects.