['Bug' Fix] Info ERROR: Couldn't find module rules file for module 'HammUEr'.

Advertisemen

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!

Advertisemen

Disclaimer: Gambar, artikel ataupun video yang ada di web ini terkadang berasal dari berbagai sumber media lain. Hak Cipta sepenuhnya dipegang oleh sumber tersebut. Jika ada masalah terkait hal ini, Anda dapat menghubungi kami disini.

Tidak ada komentar:

Posting Komentar

© Copyright 2017 Game Engine Tutorial