Skip to content

v5.0.x Patch Notes

Release Date: October 2025

Placement Persistence: Metadata-Based Approach

Section titled “Placement Persistence: Metadata-Based Approach”

Summary: Replaced hidden PlaceableInstance component with lightweight metadata tracking.

Why this is minor: The change doesn’t affect the public API surface - it’s an internal implementation improvement that makes persistence more reliable and easier to use.

Changes:

  • Removed PlaceableInstance node-based tracking
  • Added gb_placement metadata dictionary for tracking placed objects
  • Introduced GBPlacementPersistence utility class for save/load operations
  • Updated all placement workflows to use metadata instead of components

Migration Steps:

  1. Replace PlaceableInstance references with metadata queries using get_meta("gb_placement")
  2. Update save/load logic to use GBPlacementPersistence.get_all_placed_objects() and save_placement_data()
  3. See the Placement Persistence Migration guide for detailed examples

Release Date: September 2025

Summary: Initial stable release of Grid Building v5.0.

  • Complete rewrite of placement and building systems
  • Rule-based placement validation framework
  • Comprehensive indicator management system
  • Full multiplayer support with deterministic workflows
  • Extensive API documentation and guides