From a2f135e7d725d3a9232dfef1ee19ecae2efb9e31 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 11 Feb 2011 12:09:15 +0000 Subject: use mesh.validate() to ensure all meshes of imported data is ok and wont crash blender. --- io_mesh_ply/import_ply.py | 1 + 1 file changed, 1 insertion(+) (limited to 'io_mesh_ply') diff --git a/io_mesh_ply/import_ply.py b/io_mesh_ply/import_ply.py index 1dac3a8d..8e5db68e 100644 --- a/io_mesh_ply/import_ply.py +++ b/io_mesh_ply/import_ply.py @@ -307,6 +307,7 @@ def load_ply(filepath): for j, col in enumerate(f_col): col.r, col.g, col.b = ply_col[j] + mesh.validate() mesh.update() scn = bpy.context.scene -- cgit v1.2.3