Hey guys,
the case here is, I want to give blueprint designers a possibility to connect a method to my C++ component, which will invoke that specific method in a certain moment. I’m out of ideas how it could be implemented, so I’d appreciate any help.
It’s already done within Unreal Blueprint Editor in a dispatcher system, so let me illustrate it by this screenshot:

Now, I have a C++ class inheriting from ActorComponent, above which I’m declaring some kind of delegate (for example multicast) and I have a method inside that C++ class, named AddMethodCallback().
I want AddMethodCallback, to have an argument to pass the function so I could bind it’s address to my delegate. AddMethodCallback would be a BlueprintCallable and I just don’t know how to declare the argument so it would appear in Editor just like on the screenshot.
I know how to declare other types of inputs and outputs, just not this one “Event input type”. Any ideas?
BTW.
2nd question:
I didn’t use dispatchers too much, could you explain me the outcome here, related to the first screenshot?
