Search for FIXME
if you want to see all the things that need to be addressed
Wwise 2023.1.7.8574.3199
if you need audio ( otherwise keep stub)modio_ue4_public_src_v2023.11.ue5
if you need actual modio functionality in Editor
Add an InteractionType.h
enum 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.