The Packaged Version
Once you've finished the project, it's good practice to package it (as covered in the previous chapters) so that we have a pure standalone version that doesn't use Unreal Engine editor, which will run faster and is more lightweight.
The following steps will help you create the packaged version of Exercise 16.01, Testing the Third Person Template in Multiplayer file:
- Go to
File
->Package Project
->Windows
->Windows (64-bit)
. - Pick a folder to place the packaged build and wait for it to finish.
- Go to the selected folder and open the
WindowsNoEditor
folder inside it. - Right-click on
TestMultiplayer.exe
and pickCreate Shortcut
. - Rename the new shortcut
Run Server
. - Right-click on it and pick
Properties
. - On the Target, append
ThirdPersonExampleMap?Listen -server
, which creates a listen server usingThirdPersonExampleMap
. You should end up with this:"<Path>\WindowsNoEditor\TestMultiplayer.exe"...