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:
authorCampbell Barton <ideasman42@gmail.com>2013-07-15 13:42:13 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-07-15 13:42:13 +0400
commit26ef284ae4468b6ed3a41b07394a8c2e2512d0f5 (patch)
tree1e1b91e7a99ceace998f6d4bc03a70f478b4ddf4
parent93b4f97c6ac9450b7b9474a9dbe238bd1ac8f86e (diff)
remove unneeded checkv2.68
-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[:]