Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/uvcalc_smart_project.py')
-rw-r--r--release/scripts/uvcalc_smart_project.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/uvcalc_smart_project.py b/release/scripts/uvcalc_smart_project.py
index ae6ffacf593..9f40b63b67e 100644
--- a/release/scripts/uvcalc_smart_project.py
+++ b/release/scripts/uvcalc_smart_project.py
@@ -827,7 +827,7 @@ def main():
global USER_STRETCH_ASPECT
global USER_ISLAND_MARGIN
- objects= bpy.scenes.active.objects
+ objects= bpy.data.scenes.active.objects
# we can will tag them later.
obList = [ob for ob in objects.context if ob.type == 'Mesh']
@@ -922,7 +922,7 @@ def main():
time1 = sys.time()
# Tag as False se we dont operate on teh same mesh twice.
- bpy.meshes.tag = False
+ bpy.data.meshes.tag = False
for ob in obList:
me = ob.getData(mesh=1)