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>2010-11-16 05:37:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-16 05:37:43 +0300
commitb90e9dc41db531575740cdd051489db96cedde73 (patch)
tree2b94160dc7ef9fcd139b8468fc60db026bef4c0c /io_import_scene_mhx.py
parentb9f8784d3b63be9072d5628ddcb55e57046ed34e (diff)
fix for change in blenders api
Diffstat (limited to 'io_import_scene_mhx.py')
-rw-r--r--io_import_scene_mhx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_import_scene_mhx.py b/io_import_scene_mhx.py
index c6c0aa10..a11d8c2a 100644
--- a/io_import_scene_mhx.py
+++ b/io_import_scene_mhx.py
@@ -2019,7 +2019,7 @@ def parseProcess(args, tokens):
mat = mathutils.Matrix.Rotation(angle, 4, axis)
try:
pb = pbones[val[0]]
- prod = pb.matrix_local * mat
+ prod = pb.matrix_basis * mat
for i in range(4):
for j in range(4):
pb.matrix_local[i][j] = prod[i][j]