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>2016-02-10 22:00:44 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-02-10 22:00:44 +0300
commit3c5d5fb1cad25d75df3a3a032e86a58957311fd2 (patch)
tree7065899ee9e1a75d79b9558607827009874f212d /io_scene_fbx/export_fbx.py
parent039f3646b5a2a3a76fd43df1a2cf68bc0242f1c7 (diff)
parent6266b4139503bb614576f15ea4e90870ac5e597d (diff)
Merge branch 'master' into fbx_io_export_ignore_parentsfbx_io_export_ignore_parents
Conflicts: io_scene_fbx/import_fbx.py
Diffstat (limited to 'io_scene_fbx/export_fbx.py')
-rw-r--r--io_scene_fbx/export_fbx.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index 64d73908..ff39ff44 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1907,9 +1907,11 @@ def save_single(operator, scene, filepath="",
# Warning for scaled, mesh objects with armatures
if abs(ob.scale[0] - 1.0) > 0.05 or abs(ob.scale[1] - 1.0) > 0.05 or abs(ob.scale[1] - 1.0) > 0.05:
- operator.report({'WARNING'}, "Object '%s' has a scale of (%.3f, %.3f, %.3f), " \
- "Armature deformation will not work as expected " \
- "(apply Scale to fix)" % ((ob.name,) + tuple(ob.scale)))
+ operator.report(
+ {'WARNING'},
+ "Object '%s' has a scale of (%.3f, %.3f, %.3f), "
+ "Armature deformation will not work as expected "
+ "(apply Scale to fix)" % (ob.name, *ob.scale))
else:
blenParentBoneName = armob = None