[Bug Report] BlueprintImplementableEvent and Interfaces don't work together

A quicker way of doing this, without the need for an explicit cast, is to use the static helper function we automatically generate with interfaces. In your example, assuming that your interface is called “ITargetInterface”, you could simply call:

ITargetInterface::Execute_MyFunction(Actor);

which does the cast, and conditional call in one handy function!

1 Like