From f1067a3c0b33f488f5bf7da7b7be54d9e6b1635c Mon Sep 17 00:00:00 2001 From: Gary Ritchie Date: Thu, 23 Apr 2026 18:19:18 -0400 Subject: [PATCH] Version bump --- __init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/__init__.py b/__init__.py index bfabef1..cdb4d95 100644 --- a/__init__.py +++ b/__init__.py @@ -6,10 +6,10 @@ from .scripts import phase2_geometry as logic bl_info = { "name": "Stocker Helper", "author": "Gary Ritchie", - "version": (0, 1, 0), + "version": (0, 3, 1), "blender": (4, 0, 0), "location": "View3D > Sidebar > Stocker", - "description": "Automates boundary creation for Geometry Nodes packing", + "description": "Creates boundary object with Stocker Geometry Nodes assets (sold separately.)", "category": "Object", } @@ -108,8 +108,8 @@ class STOCKER_OT_setup(bpy.types.Operator): bounds['size'].z += height_add bounds['max'].z += height_add - # 3. Create the cube - new_obj = logic.create_aligned_boundary_cube(bounds) + # 3. Create the cube (parent to selected instance for tracking) + new_obj = logic.create_aligned_boundary_cube(bounds, parent=selected_objs[0], mode=self.mode) if not new_obj: self.report({'ERROR'}, "Failed to create boundary cube.") return {'CANCELLED'}