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>2015-05-22 23:06:56 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-05-22 23:06:56 +0300
commit7d4c4744b1134af469f8ef6d95c6a3781eed50e3 (patch)
tree256610af123b85abe65ea8d46312a68325a16a71 /io_scene_fbx/fbx_utils.py
parent5a7cd7d9b3f7f284ef54be27291d876a999bf48f (diff)
FBX export: do not embed a same file more than once!
Diffstat (limited to 'io_scene_fbx/fbx_utils.py')
-rw-r--r--io_scene_fbx/fbx_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_scene_fbx/fbx_utils.py b/io_scene_fbx/fbx_utils.py
index e6cab6b0..4cf46ffb 100644
--- a/io_scene_fbx/fbx_utils.py
+++ b/io_scene_fbx/fbx_utils.py
@@ -1181,7 +1181,7 @@ def fbx_name_class(name, cls):
# Helper sub-container gathering all exporter settings related to media (texture files).
FBXExportSettingsMedia = namedtuple("FBXExportSettingsMedia", (
"path_mode", "base_src", "base_dst", "subdir",
- "embed_textures", "copy_set",
+ "embed_textures", "copy_set", "embedded_set",
))
# Helper container gathering all exporter settings.