Troubleshooting
Logs
All logs produced by this plugin are created under the PatreonAPIClient
log category
C++ Headers
If you are working in C++ and keep getting "File not found" errors when attempting to include headers from this plugin,
make sure you have added the plugin as a dependency for your project in your Build.cs
file:
public class MyModule : ModuleRules
{
public MyModule(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore" });
// \/ Add NBPatreonAPIClient as a dependency to allow access to plugin header files, etc.
PrivateDependencyModuleNames.AddRange(new string[] { "NBPatreonAPIClient" });
}
}
For any questions, help, suggestions or feature requests, please feel free to contact me at nbpsup@gmail.com