Pathfinder Style 'Loot' Screens

Shoodaddy

New member
Is it possible, with a chest or inventory grid to make a Pathfinder loot screen where the inventories of the dead combatants are aggregated into one window AND the source separates the grid?

The screen looks like this:
1702875259881.png
 
Unfortunatly we do not have anything like this built-in.
You will need to code this yourself.

I would look into making a custom ItemSlotViewContainer (that's the base class we use for all UI that shows ItemViewSlots).

This will give you all the functionality of Drag&Drop, ItemViews, ItemActions, etc... out of the box.
All you'll need to code is placing the ItemViewSlots in the UI and linking them to each inventory.


Another approach would be to code a component that shows up multiple InventoryGrids. That might be a bit easier.

I hope that makes sense.
 
Top