use update() rather then update_tag(), needed for making edge data.

This commit is contained in:
Campbell Barton
2011-02-08 21:32:26 +00:00
parent 4ac2d60800
commit 32e3aac6bc
2 changed files with 2 additions and 2 deletions

View File

@@ -77,7 +77,7 @@ class AddBox(bpy.types.Operator):
mesh.vertices.foreach_set("co", verts_loc)
mesh.faces.foreach_set("vertices_raw", faces)
mesh.update_tag()
mesh.update()
# add the mesh as an object into the scene with this utility module
import add_object_utils