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:
Diffstat (limited to 'archipack/archipack_snap.py')
-rw-r--r--archipack/archipack_snap.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archipack/archipack_snap.py b/archipack/archipack_snap.py
index 346b64dd..9d50add7 100644
--- a/archipack/archipack_snap.py
+++ b/archipack/archipack_snap.py
@@ -228,13 +228,13 @@ class ArchipackSnapBase():
"""
helper = bpy.data.objects.get('Archipack_snap_helper')
if helper is not None:
- print("helper found")
+ # print("helper found")
if context.scene.objects.get('Archipack_snap_helper') is None:
- print("link helper")
+ # print("link helper")
# self.link_object_to_scene(context, helper)
context.scene.collection.objects.link(helper)
else:
- print("create helper")
+ # print("create helper")
m = bpy.data.meshes.new("Archipack_snap_helper")
m.vertices.add(count=1)
helper = bpy.data.objects.new("Archipack_snap_helper", m)