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>2019-05-29 12:41:49 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-05-29 12:41:49 +0300
commit815c1eab95b05dea209fb16866ad93ce6504179f (patch)
tree0f8f2c77a595227418b1d019b3f0d82a41217b4e /io_scene_fbx
parent8cbad902016d3aee763fc100b59d8f50a560df96 (diff)
FBX: Fix ShapeKeys not being exported anymore for rigged meshes.
Not sure when that mistake was introduced, Armature modifier is not considered a 'real' modifier to be baked, from FBX exporter point of view... Reported/followup from T64994.
Diffstat (limited to 'io_scene_fbx')
-rw-r--r--io_scene_fbx/__init__.py2
-rw-r--r--io_scene_fbx/export_fbx_bin.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 5d95db6d..fb0c4213 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "FBX format",
"author": "Campbell Barton, Bastien Montagne, Jens Restemeier",
- "version": (4, 14, 12),
+ "version": (4, 14, 13),
"blender": (2, 80, 0),
"location": "File > Import-Export",
"description": "FBX IO meshes, UV's, vertex colors, materials, textures, cameras, lamps and actions",
diff --git a/io_scene_fbx/export_fbx_bin.py b/io_scene_fbx/export_fbx_bin.py
index c8790ada..762fb5b9 100644
--- a/io_scene_fbx/export_fbx_bin.py
+++ b/io_scene_fbx/export_fbx_bin.py
@@ -2220,7 +2220,7 @@ def fbx_data_from_scene(scene, depsgraph, settings):
armature = object.data
backup_pose_positions.append((armature, armature.pose_position))
armature.pose_position = 'REST'
- if mod.show_render or mod.show_viewport:
+ elif mod.show_render or mod.show_viewport:
use_org_data = False
if not use_org_data:
# If modifiers has been altered need to update dependency graph.