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>2011-09-19 19:08:06 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-09-19 19:08:06 +0400
commit1d1482044b46c98f86c33945a1bd1cf4edc7bb36 (patch)
tree795f6b4344018f9193e6beb954d5c74396c19012 /io_scene_fbx
parent0dd81203a3982e55af012cfcc9a232c78ce631b9 (diff)
/trunk: Removed final points in UI strings and messages.
Plus a few styling enhancements. [[Split portion of a mixed commit.]]
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/export_fbx.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index 2877eece..c006eb83 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1941,7 +1941,9 @@ 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,) + tuple(ob.scale)))
else:
blenParentBoneName = armob = None