I have a bullet that hits a character, that bullet does damage over a period of time, when it ends it adds another temporary effect that adds an ability to the target that fires another bullet, that bullet will of course hit another character, etc. ie. Chain bullet.
How do I inform that second bullet that it belongs to the player who fired the first bullet?
Or put another way:
When an effect creates an ability on another actor, does the ability know who the source/instigator of the original effect was?
Did a bit of digging through the code and it seems what I need just isn’t exposed to Blueprint. Here’s the code to put in your <overridden>GameplayAbility.h:
Thanks for the reply, but I’m after a cleaner solution that works more in line with GAS. I dug through the code and found the information I want actually does get passed around, we just can’t access it through blueprint. If you’re curious I posted the code I used and marked it as the solution.