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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-01 21:13:26 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-01 21:13:26 +0300
commited161459d14a31fd237cd1f65a7070113ae3300f (patch)
tree375a2763bf4fa7135aa4e64c92fccaaa335a4034 /io_scene_fbx
parent50c493fb22869e0e08936c4b7a44624887b1de58 (diff)
Fix typos in source comments and descriptions
Patch contributed by luzpaz. Differential Revision: https://developer.blender.org/D5800
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/export_fbx_bin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py
index 12f29092..e4d0feb3 100644
--- a/io_scene_fbx/export_fbx_bin.py
+++ b/io_scene_fbx/export_fbx_bin.py
@@ -1070,7 +1070,7 @@ def fbx_data_mesh_elements(root, me_obj, scene_data, done_meshes):
if scene_data.settings.use_tspace:
tspacenumber = len(me.uv_layers)
if tspacenumber:
- # We can only compute tspace on tesellated meshes, need to check that here...
+ # We can only compute tspace on tessellated meshes, need to check that here...
t_lt = [None] * len(me.polygons)
me.polygons.foreach_get("loop_total", t_lt)
if any((lt > 4 for lt in t_lt)):