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:
-rw-r--r--io_scene_fbx/export_fbx.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/io_scene_fbx/export_fbx.py b/io_scene_fbx/export_fbx.py
index 802e7950..da833bad 100644
--- a/io_scene_fbx/export_fbx.py
+++ b/io_scene_fbx/export_fbx.py
@@ -2605,10 +2605,9 @@ Connections: {''')
# get the current action first so we can use it if we only export one action (JCB)
for my_arm in ob_arms:
- if not blenActionDefault:
- blenActionDefault = my_arm.blenAction
- if blenActionDefault:
- break
+ blenActionDefault = my_arm.blenAction
+ if blenActionDefault:
+ break
if use_anim_action_all:
tmp_actions = bpy.data.actions[:]