[Bf-extensions-cvs] [9cd8795] master: FBX export: fix dummy typo!

Bastien Montagne noreply at git.blender.org
Thu Jul 17 15:16:58 CEST 2014


Commit: 9cd8795c79b798222006fddbaef138a3b5e809ba
Author: Bastien Montagne
Date:   Thu Jul 17 15:16:30 2014 +0200
https://developer.blender.org/rBA9cd8795c79b798222006fddbaef138a3b5e809ba

FBX export: fix dummy typo!

===================================================================

M	io_scene_fbx/export_fbx_bin.py

===================================================================

diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py
index 3c46fa7..c71e2ce 100644
--- a/io_scene_fbx/export_fbx_bin.py
+++ b/io_scene_fbx/export_fbx_bin.py
@@ -408,7 +408,7 @@ def fbx_template_def_texture_file(scene, settings, override_defaults=None, nbr_u
         (b"PremultiplyAlpha", (True, "p_bool", False)),
         (b"CurrentTextureBlendMode", (1, "p_enum", False)),  # Additive...
         (b"CurrentMappingType", (0, "p_enum", False)),  # UV.
-        (b"UVSet", (b"default", "p_string", False)),
+        (b"UVSet", ("default", "p_string", False)),  # UVMap name.
         (b"WrapModeU", (0, "p_enum", False)),  # Repeat.
         (b"WrapModeV", (0, "p_enum", False)),  # Repeat.
         (b"UVSwap", (False, "p_bool", False)),



More information about the Bf-extensions-cvs mailing list