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:
authorBastien Montagne <montagne29@wanadoo.fr>2012-03-05 20:31:00 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-03-05 20:31:00 +0400
commit538d6dda6be0bd7d34e784840419046637f1f3c1 (patch)
tree13caf946f8bbcef6f0ff8b0322dbba81912d38c9 /io_mesh_uv_layout
parent242930a768027226c27505115e3d9e37039bea50 (diff)
tesselat -> tessellat in UI messages.
Diffstat (limited to 'io_mesh_uv_layout')
-rw-r--r--io_mesh_uv_layout/__init__.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/io_mesh_uv_layout/__init__.py b/io_mesh_uv_layout/__init__.py
index 2e706965..178f32a2 100644
--- a/io_mesh_uv_layout/__init__.py
+++ b/io_mesh_uv_layout/__init__.py
@@ -103,9 +103,9 @@ class ExportUVLayout(bpy.types.Operator):
min=0.0, max=1.0,
default=0.25,
)
- tesselated = BoolProperty(
- name="Tesselated UVs",
- description="Export tesselated UVs instead of polygons ones",
+ tessellated = BoolProperty(
+ name="Tessellated UVs",
+ description="Export tessellated UVs instead of polygons ones",
default=False,
options={'HIDDEN'}, # As not working currently :/
)
@@ -137,7 +137,7 @@ class ExportUVLayout(bpy.types.Operator):
return image_width, image_height
- def _face_uv_iter(self, context, mesh, tesselated):
+ def _face_uv_iter(self, context, mesh, tessellated):
uv_layer = mesh.uv_loop_layers.active.data
polys = mesh.polygons
@@ -202,8 +202,8 @@ class ExportUVLayout(bpy.types.Operator):
mesh = obj.data
func(fw, mesh, self.size[0], self.size[1], self.opacity,
-# self.tesselated,
- lambda: self._face_uv_iter(context, mesh, self.tesselated))
+# self.tessellated,
+ lambda: self._face_uv_iter(context, mesh, self.tessellated))
if self.modified:
bpy.data.meshes.remove(mesh)