Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 803 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 803 Bytes

TODO

Search for FIXME if you want to see all the things that need to be addressed

Optional plugin dependencies

  1. Wwise 2023.1.7.8574.3199 if you need audio ( otherwise keep stub)
  2. modio_ue4_public_src_v2023.11.ue5if you need actual modio functionality in Editor

Engine changes requirements

Add an InteractionType.henum to engine space:

#include "CoreMinimal.h"

UENUM(BlueprintType)
enum class EInteractionType : uint8
{
    None = 0,
    Hold = 1,
    MultiClick = 2,
    Combined = 3,
    SingleClick = 4,
    DealDamage = 5,
    AutoInteraction = 6,
    EInteractionType_MAX = 7,
};

Alternatively, use vanilla branch.

The rest of the engine requirements (custom modules/interfaces) are commented out, use FIXME to find them if needed.