Go, Go, Godot!
  • 0

Inventory System v1.18 available

November 23, 2024

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.

Get It Now
Learn More

assetgdscriptgodot
Posted in Godot.
Share
PreviousToggling Visibility of Nested CanvasLayers
NextInventory System v1.17 available

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Related Posts

  • October 27, 2022

    Projectiles going through collision objects

    Ever had the problem where you’re firing a bullet or some kind of projectile at high speeds, and it just goes right through the collision object, instead of hitting it? Here’s a weapon that fires a bullet at random velocities, to demonstrate the issue: The bullets impact the character in various places, rather than at …

  • October 23, 2023

    Fire, Rain, and Black Hole particle effects

    This video is from December last year and uses Godot 4.0-beta7, but I thought it was interesting, because… particle effects!

  • April 20, 2024

    Ditch @onready, use @export instead

    Are you using @onready to reference nodes? There’s a better way! Here’s a simple example of how many tutorials use @onready to reference nodes: That script is attached to a CanvasLayer node with a ProgressBar called HealthBar. And yet, when running the scene, it will throw an error: This is because there’s actually a spelling …

  • December 22, 2022

    A GDScript refactoring exercise

    Arguably, more fun than writing code is removing code. I was assembling a split-screen multiplayer UI. The goal behavior is to show/hide the appropriate displays for the players, depending on how many players there are. Initially, the code to update the UI was very simple, because I started with two players. In that case, you …

    © 2025 GoGoGodot.io. All rights reserved.