Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2017-06-26 14:26:28 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2017-06-26 14:26:28 +0300
commit7bc990e29c31b20d6ef2fd09f662af3617362471 (patch)
tree7fb8cdd72d51d557fd7ba5094e0fd066a25c315c /object_boolean_tools.py
parent664ecb162c9beb5a19df67934866badb0ce2b3e4 (diff)
Bool Tool: Auto Booleans now handle boolean operations with multi-user objects
Diffstat (limited to 'object_boolean_tools.py')
-rw-r--r--object_boolean_tools.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/object_boolean_tools.py b/object_boolean_tools.py
index 24dd2d73..44362ad1 100644
--- a/object_boolean_tools.py
+++ b/object_boolean_tools.py
@@ -605,6 +605,7 @@ class AutoBoolean:
for ob in bpy.context.selected_objects:
if ob.type != 'MESH':
ob.select = False
+ bpy.ops.object.make_single_user(object=True, obdata=True)
bpy.ops.object.convert(target='MESH')
def mesh_selection(self, ob, select_action):