Skip to content
This repository has been archived by the owner on Dec 21, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (26 loc) · 1.19 KB

README.md

File metadata and controls

34 lines (26 loc) · 1.19 KB

UE4_TurnBased

Warning. Dead code ahead. NavGrid is a active project that does navigation on a grid for turn based games.

Things (mostly base clases for blueprints) that might come in handy for making a turn-based game in Unreal Engine 4

Install

  • Place the content under <YourProject>/Source
  • Include UE4_TurnBased in the call to OutExtraModuleNames.AddRange in <YourProject>.Target.cs
  • Include UE4_TurnBased in the call to OutExtraModuleNames.AddRange in <YourProject>Editor.Target.cs
  • Add the following to Config/DefaultEngine.ini:
[UnrealEd.EditorEngine]
+EditPackages=UE4_TurnBased

[Launch]
Module=UE4_TurnBased

[/Script/Engine.UObjectPackages]
+NativePackages=UE4_TurnBased
  • Add the follwing entry to Modules in <YourProject>.uproject:
                {
                        "Name": "UE4_TurnBased",
                        "Type": "Runtime",
                        "LoadingPhase": "Default"
                }
  • Right click on <YourProject>.uproject and select Generate Visual Studio project files

Documentation for modules: https://docs.unrealengine.com/latest/INT/Programming/Modules/Gameplay/index.html