move generic bpy helper modules into bpy_extras.

This commit is contained in:
Campbell Barton
2011-05-16 07:51:02 +00:00
parent 6c8317ae8f
commit 68dbfe6ac9
8 changed files with 5 additions and 5 deletions

View File

@@ -80,8 +80,8 @@ class AddBox(bpy.types.Operator):
mesh.update()
# add the mesh as an object into the scene with this utility module
import add_object_utils
add_object_utils.object_data_add(context, mesh, operator=self)
from bpy_extras import object_utils
object_utils.object_data_add(context, mesh, operator=self)
return {'FINISHED'}