From 1a1ba20a888e1e1e7aaf31ffabc56660a5d004d5 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 15 Jul 2019 11:09:07 +1000 Subject: Fix object_fracture_cell, collection option Was adding to both the main scene as well as the named collection. --- object_fracture_cell/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/object_fracture_cell/__init__.py b/object_fracture_cell/__init__.py index 037ed15c..e8244549 100644 --- a/object_fracture_cell/__init__.py +++ b/object_fracture_cell/__init__.py @@ -161,6 +161,7 @@ def main_object(context, obj, level, **kw): group_objects = group.objects[:] for obj_cell in objects: if obj_cell not in group_objects: + collection.objects.unlink(obj_cell) group.objects.link(obj_cell) if kw_copy["use_debug_redraw"]: -- cgit v1.2.3