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>2020-07-22 08:53:31 +0300
committerMikhail Rachinskiy <mikhail.rachinskiy@gmail.com>2020-07-22 08:53:31 +0300
commit39b8dbb572472870c9a8b000bc49a02a9e47d25c (patch)
treebbc37c12e950560af15522a1b23443892e4bb50c
parent85173fa5263a34924154f26c0c457dd5e79621ea (diff)
PLY: flush selection on import
-rw-r--r--io_mesh_ply/import_ply.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/io_mesh_ply/import_ply.py b/io_mesh_ply/import_ply.py
index 2bc67746..c118aa3c 100644
--- a/io_mesh_ply/import_ply.py
+++ b/io_mesh_ply/import_ply.py
@@ -408,12 +408,16 @@ def load_ply(filepath):
if not mesh:
return {'CANCELLED'}
+ for ob in bpy.context.selected_objects:
+ ob.select_set(False)
+
obj = bpy.data.objects.new(ply_name, mesh)
bpy.context.collection.objects.link(obj)
bpy.context.view_layer.objects.active = obj
obj.select_set(True)
print("\nSuccessfully imported %r in %.3f sec" % (filepath, time.time() - t))
+
return {'FINISHED'}