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

git.blender.org/blender-addons.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:52:07 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-23 03:52:07 +0400
commit6b458540bd82f9d10639353d8ae331ad1d01a419 (patch)
treea32877fb7aa77f1c37c6dfaff4cc1d48f1f23ec0 /io_export_directx_x.py
parent395bca8bda4dcd8b57ac64abeb103a456491c0bf (diff)
update for change in blender api
Diffstat (limited to 'io_export_directx_x.py')
-rw-r--r--io_export_directx_x.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_export_directx_x.py b/io_export_directx_x.py
index cfc8c837..20949e6c 100644
--- a/io_export_directx_x.py
+++ b/io_export_directx_x.py
@@ -529,7 +529,7 @@ def WriteMeshUVCoordinates(Config, Mesh):
Config.File.write("{}MeshTextureCoords {{ //{} UV Coordinates\n".format(" " * Config.Whitespace, LegalName(Mesh.name)))
Config.Whitespace += 1
- UVCoordinates = Mesh.uv_loop_layers.active.data
+ UVCoordinates = Mesh.uv_layers.active.data
Index = 0
VertexCount = GetMeshVertexCount(Mesh)