I've added the plugin into my project but it can't be compiled:
Plugins/LuaMachine/Source/LuaMachine/Private/LuaBlueprintFunctionLibrary.cpp:15:10: fatal error: 'HAL/PlatformFilemanager.h' file not found
#include "HAL/PlatformFilemanager.h"
I've found that the file has a new name in UE5: HAL/PlatformFileManager.h. I suppose building projects is not affected on Windows as its filesystem is case insensitive.
Here is a possible fix. I couldn't make a pull request myself.
Hi
I've added the plugin into my project but it can't be compiled:
I've found that the file has a new name in UE5:
HAL/PlatformFileManager.h
. I suppose building projects is not affected on Windows as its filesystem is case insensitive.Here is a possible fix. I couldn't make a pull request myself.
It works with UE5 but I haven't tested with UE4 (maybe there is no need in
!defined(ENGINE_MAJOR_VERSION)
part).Could someone add this? Thanks