I’m working on a project in Unreal Engine for Fortnite and using the ItemPlacer feature. I specifically need to find the event name that is triggered when the ItemPlacer grants an item.
I’m having trouble locating this event name. Does anyone know where I can find it or how I can access this information within the engine? Any help would be greatly appreciated!
The only exposed events and functions of a device are the ones in the digest, which you can get to by ctrl-clicking the device class (in this case item_placer_device). Item Placers don’t have a ton of exposed events/functions in Verse so in order to access those within a Verse script, you have to connect triggers or channel devices to the item placer device with event binding and use the triggers/channel devices in your script to control/listen for events.