I have a prototype multiplayer C++ game in UE4.25.0.
If I play the game in the editor. No problem.
If I package for Win64 no error. Than if I start the packaged build. Nothing happens even with -log. How can I debug this?
You can package as debug. But where do I find the debug info?
So I am looking for tips how to debug when a packaged game does nothing?
You need to go into the projects build settings, select âDebugGameâ as the build type, and make sure you check âInclude Debug Filesâ. If you donât the PDBâs will be stripped from the output. âFor Distributionâ should be UNchecked.
Once youâve made a build and everything has been cooked, you can either launch the game and attach visual studio - or you can select âDebugGameâ in visual studio to launch from there.
Thanks.
So I have build the project in visual studio 2019 with both debugeditor en debugserver. Than I ran the editor, set buildconfiguration at debuggame , set buildtarget as server, check Include Debug Files. After package I have a map called windowserver. If I run it, nothings happens. So how do I debug the server? How do I attach VS to this file?