Is it possible to fire an event from a c++ component?

Look into interfaces, i think that you’ll find a solution from there. That way your character AND your c++ component can implement the interface and you’ll be able to do the magic.

I have some custom C++ components on my character. I’d like to fire an event from the C++ component code and catch it in the blueprint of my character. Is there a way to do this?

BlueprintImplmentableEvent doesn’t seem to work since my character doesn’t inherit from the component, only contains a copy of it.

Thanks!

Do you know of any examples in code that is doing this? I thought interfaces were only for blueprint to blueprint communication.