Source: addons/item_vault/item_vault_bus.gd
Syntax
class ItemVaultBus extends RefCountedMembers
| Name | Kind | Summary |
|---|---|---|
item_dropped | Event | Scoped signal bus for ItemVault events. Emitted when a scene is dropped into the game world. |
item_picked | Event | Emitted when a pickup is collected. |
pickup_rejected | Event | Emitted when a pickup cannot be accepted by the configured vault target. |
item_added | Event | Emitted when an item is added to a container. |
currency_added | Event | Emitted when currency is credited to a wallet. Prefer this over `item_added(..., &"wallet")` for currency-specific subscribers — the `&"wallet"` container-id on item_added is a deprecated sentinel kept for backwards compatibility (issue #149). |
item_removed | Event | Emitted when an item is removed from a container. |
container_added | Event | Emitted when a container is added to an inventory. |
container_removed | Event | Emitted when a container is removed from an inventory. |
item_moved | Event | Emitted when an item is moved between containers. |