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:
Diffstat (limited to 'io_scene_fbx/export_fbx.py')
-rw-r--r--io_scene_fbx/export_fbx.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index a5d173c5..eb4e8ed2 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -1954,7 +1954,7 @@ def save(operator, context, filepath="",
if ob_arms_orig_rest:
for ob_base in bpy.data.objects:
if ob_base.type == 'ARMATURE':
- ob_base.update()
+ ob_base.update_tag()
# This causes the makeDisplayList command to effect the mesh
scene.frame_set(scene.frame_current)
@@ -2104,7 +2104,7 @@ def save(operator, context, filepath="",
if ob_arms_orig_rest:
for ob_base in bpy.data.objects:
if ob_base.type == 'ARMATURE':
- ob_base.update()
+ ob_base.update_tag()
# This causes the makeDisplayList command to effect the mesh
scene.frame_set(scene.frame_current)