When compiling my UE project with the plugin HammUEr I would be given the error:
Info ERROR: Couldn't find module rules file for module 'HammUEr'.
To solve this, I would deactivate the plugin, compile code, reactivate plugin. Very annoying.
So I found a fix for it.
Make the location:
Plugins/HammUEr/Source/HammUEr/
Then create the file HammUEr.Build.cs
With the content:
namespace UnrealBuildTool.Rules
{
public class HammUEr : ModuleRules
{
public HammUEr(TargetInfo Target)
{
PublicIncludePaths.AddRange(
new string[] {
}
);
PrivateIncludePaths.AddRange(
new string[] {
}
);
PublicDependencyModuleNames.AddRange(
new string[]
{
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
}
);
}
}
}
Save this file and now you can compile!
['Bug' Fix] Info ERROR: Couldn't find module rules file for module 'HammUEr'.
Advertisemen
Advertisemen
Tidak ada komentar:
Posting Komentar