Failed to find a blueprint implementable while calling in c++

Since this is the first link that shows up when you look up “blueprintimplementableevent findfunctionchecked” I wanted to provide the answer to my problem.
A BlueprintImplementableEvent was not compiling in C++ because the parameter type was wrong. For TArray parameter types, remember you must pass by reference! TArray<>&

1 Like