A new version of the Inventory System is available. This release includes a new structure placement feature and improves crafting.
Structure Placement
Players can now place structures from their inventory. When using an inventory item representing a structure, the player is prompted to select where to place it. The included demo lets players place an anvil. Once placed, the anvil is used to craft items.
Structure placement provides an example of how to build mechanisms that let players build structures or place objects.
Crafting Refinements
The crafting components have received some improvements to add support for multiplayer.
Changelog
Features:
Crafting UI implemented for the single-dialog Game UI.
Crafting now supports multiplayer.
Structure placements
Bug fixes:
Add missing Crafting Status UI type hints
Crafting Status UI correctly displays the item currently being crafted and its status when opening the UI when crafting is already in progress.
Move the MyGameUISelector script to its component scene counterpart in the
/game_ui
folder.
The Inventory System Deep Dive and Architecture Guide helps game developers implement advanced multiplayer inventories using Godot Engine. The PDF Guide contains over 500 pages of code walkthroughs, diagrams, and explains concepts related to inventories, items, and more.
Normally I use OBS for screen recording, but there are cases where it makes sense to use Godot’s built-in movie writer that was recently announced. For example, if you have a slow PC or really demanding game, OBS will skip frames. It makes sense since OBS is just recording what’s on the screen in real …
I had a setup with nested CanvasLayer nodes. Toggling the visibility of the root CanvasLayer doesn’t hide any nested CanvasLayer nodes. My solution was to listen to the visibility_changed signal, find any CanvasLayer child nodes, and apply the same visibility to them.
Inventory System v1.18 available
A new version of the Inventory System is available. This release includes a new structure placement feature and improves crafting.
Structure Placement
Players can now place structures from their inventory. When using an inventory item representing a structure, the player is prompted to select where to place it. The included demo lets players place an anvil. Once placed, the anvil is used to craft items.
Structure placement provides an example of how to build mechanisms that let players build structures or place objects.
Crafting Refinements
The crafting components have received some improvements to add support for multiplayer.
Changelog
Features:
Bug fixes:
/game_ui
folder.The Inventory System Deep Dive and Architecture Guide helps game developers implement advanced multiplayer inventories using Godot Engine. The PDF Guide contains over 500 pages of code walkthroughs, diagrams, and explains concepts related to inventories, items, and more.
Related Posts
Inventory System v1.3 available
Another Inventory System release, and this time we’ve added support for persistence through serialization of inventory data. Features: Bug fixes:
Making videos for the web with Godot 4’s Movie Writer
Normally I use OBS for screen recording, but there are cases where it makes sense to use Godot’s built-in movie writer that was recently announced. For example, if you have a slow PC or really demanding game, OBS will skip frames. It makes sense since OBS is just recording what’s on the screen in real …
Inventory System v1.1 available
Hot on the heels of 1.0, version 1.1 allows for gaps in the inventory. This release also correctly bakes the release version into the PDF Guide.
Toggling Visibility of Nested CanvasLayers
I had a setup with nested CanvasLayer nodes. Toggling the visibility of the root CanvasLayer doesn’t hide any nested CanvasLayer nodes. My solution was to listen to the visibility_changed signal, find any CanvasLayer child nodes, and apply the same visibility to them.