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:
authorCampbell Barton <ideasman42@gmail.com>2012-04-23 03:51:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-23 03:51:50 +0400
commit1642e2888c296d71b2facd1a607f24a5992bb164 (patch)
tree79af894b21bfc5884295782612852b5d874e459d /source/tests
parenta164aa1ab6c23e068bb4c136609fc09a1347f990 (diff)
rename Mesh.uv_loop_layers --> uv_layers
add filtering for document generator to support --partial bpy.types.SomeType
Diffstat (limited to 'source/tests')
-rw-r--r--source/tests/bl_mesh_modifiers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/tests/bl_mesh_modifiers.py b/source/tests/bl_mesh_modifiers.py
index 0ab2213c0e1..390679800f6 100644
--- a/source/tests/bl_mesh_modifiers.py
+++ b/source/tests/bl_mesh_modifiers.py
@@ -260,7 +260,7 @@ def mesh_uv_add(obj):
if IS_BMESH:
# XXX, odd that we need to do this. until uvs and texface
# are separated we will need to keep it
- uv_loops = obj.data.uv_loop_layers[-1]
+ uv_loops = obj.data.uv_layers[-1]
uv_list = uv_loops.data[:]
for poly in obj.data.polygons:
poly_uvs = mesh_bmesh_poly_elems(poly, uv_list)