Access Blueprint Function Library in C++

Hi, you can use the “FindFunction()” method in AActor to find it in the dictionary, then call it if found: (the CallInEditor must be ticked)

UFunction* func=MyActor->FindFunction(FName(TEXT("Public Method")));
if(func) {
	MyActor->ProcessEvent(func,nullptr);
}
1 Like