Hello!
I’m trying to implement a small inventory, where my Player blueprint calls a function in an InventoryItem blueprint.
So my idea was to create an interface blueprint for my InventoryItems, since my inventory will consist of many different items.
But currently it seems like nothing is passed to my Use Item functionality in my implementation for my interface. Any suggestion what could be wrong or other suggestions is highly appreciated.
This is where i call my function on my Player blueprint.
This is what it looks like when i’m debugging. The shotgun blueprint is implementing the IInventoryItem interface.
The Use Item function in the shotgun blueprint is currently only passing along the New Param to the output of New Param 1.
I’ve watched the Content Examples 3.1 and tried too understand what i’m lacking.