Install Asset
Install via Godot
To maintain one source of truth, Godot Asset Library is just a mirror of the old asset library so you can download directly on Godot via the integrated asset library browser
Quick Information
A clean grid inventory for Godot 4 with drag & drop move/swap between slots. Ready-made InventoryUI + InventorySlot nodes, simple Inventory API (add_item, remove_at, move_slot).Lite = free. PRO adds item stacking, counters, tooltips and save integration: https://godot-forge.itch.io/grid-inventory-godot
Grid Inventory Lite β slot-based inventory for Godot 4 (free)
A clean, UI-agnostic grid inventory with drag & drop move/swap. Drop the
InventoryUI node into your scene, assign an Inventory, done.
var inventory := Inventory.new(20) # 20 slots
$InventoryUI.set_inventory(inventory)
var sword := InvItem.new()
sword.name = "Iron Sword"
sword.color = Color(0.7, 0.7, 0.8)
inventory.add_item(sword)
Drag items between slots to move or swap them. The UI stays in sync via the
inventory_changed signal. Run the included demo (demo/demo.tscn).
Install
- Copy the
addons/grid_inventoryfolder into your project. - Enable Grid Inventory Lite in Project β Project Settings β Plugins.
- Add an
InventoryUI(Control) node and assign anInventory.
Lite vs PRO
| Feature | Lite (free) | PRO |
|---|---|---|
| Fixed grid + drag & drop move/swap | β | β |
| Item icons / color placeholders | β | β |
| Stacking & auto-merge (max_stack) | β | β |
| Quantity counters | β | β |
| Item tooltips (name + description) | β | β |
count_of() / has_item() helpers |
β | β |
| One-call save / load | β | β |
Same classes, drop-in upgrade. Get Grid Inventory PRO: π https://godot-forge.itch.io/grid-inventory-godot
License
MIT β free for commercial and personal projects. See LICENSE.txt.
Made by GodotForge Β· more Godot tools: https://godot-forge.itch.io
A clean grid inventory for Godot 4 with drag & drop move/swap between slots. Ready-made InventoryUI + InventorySlot nodes, simple Inventory API (add_item, remove_at, move_slot).
Lite = free. PRO adds item stacking, counters, tooltips and save integration: https://godot-forge.itch.io/grid-inventory-godot
Reviews
Quick Information
A clean grid inventory for Godot 4 with drag & drop move/swap between slots. Ready-made InventoryUI + InventorySlot nodes, simple Inventory API (add_item, remove_at, move_slot).Lite = free. PRO adds item stacking, counters, tooltips and save integration: https://godot-forge.itch.io/grid-inventory-godot