Install plugin in Unreal Marketplace, and enable the plugin in editor (See Getting Start)
Go to your project path and find YourProjectName.Build.cs
Find the line:
PrivateDependencyModuleNames.AddRange(new string[] { });
and add "FriesLibrary" inside of the { }
PrivateDependencyModuleNames.AddRange(new string[] { "FriesLibrary" });
#include "FriesLibraryBPLibrary.h" All C++ functions are exposed to Blueprints, use Blueprint to find functions or explore the plugin source code!
#include "FriesLibraryBPLibrary.h"
Last updated 1 year ago