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:
authorThomas Larsson <thomas_larsson_01@hotmail.com>2012-08-31 11:20:20 +0400
committerThomas Larsson <thomas_larsson_01@hotmail.com>2012-08-31 11:20:20 +0400
commit8c9bbbcbba535e3e0de1a359ecc790f4d9f529c2 (patch)
treecc93b9f0cad0fbb4862f38fa2ae516119548e2d1
parent06adb372886dc156031ce7e98dc51ddc41cc05ae (diff)
Unselects all created bones.
-rw-r--r--io_import_scene_mhx.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/io_import_scene_mhx.py b/io_import_scene_mhx.py
index b569251a..2fdefa29 100644
--- a/io_import_scene_mhx.py
+++ b/io_import_scene_mhx.py
@@ -2027,6 +2027,7 @@ def correctRig(args):
amt = ob.data
cnslist = []
for pb in ob.pose.bones:
+ pb.bone.select = False
for cns in pb.constraints:
if cns.type == 'CHILD_OF':
cnslist.append((pb, cns, cns.influence))