Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 880 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 880 Bytes

UE5Template

This is a template project for a C++ UE5 project based on Alex Forsythe's tutorial video.

Building and Running

  1. After Downloading this repository you can use the rename_project.py to change the template structure. Replace <proj_name> to your name of choice.
$ python3 rename_project.py --name <proj_name>
  1. After that go into the project where a bash script named 'ue.bat' is written for various purposes. Usage is as follows:
$cd <proj_name>
$./ue.bat build         [Compile the modules]
$./ue.bat editor        [Open the project in the UE5 Editor]
$./ue.bat run           [Run a playable instance of the game ]
$./ue.bat buildexe      [Build the standalone game]
$./ue.bat ship          [Cook and Build the standalone game for shipping]