Vault Component
The vault component is the component that represents the inventory. The inventory is divided into different "Vaults", each of them represented by a Gameplay Tag. This feature is intended to let you segregate different item types for quicker querying and aggregation of items.
Example
You might want to have a UI Screen called "Journal" that shows all the notes the player has picked up while playing. Instead of requesting all iventory items and then filtering them by checking the item class or the presence of some gameplay tag, you can simply get all items in the "Journal" vault and know that all notes will be there. You can also safely manipulate items in this category knowing that no other system will be affected by this changes.
Last updated