Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-02-01 09:59:50 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-02-01 09:59:50 +0400
commita834007a9b9b7adca2e57bf6ff575524bee80804 (patch)
tree527913e721ecee8b87095ebbf29ebeb2b099018d /source/blender/blenkernel/intern/constraint.c
parent7836069775a688cceb40d3892d84886e80c437fd (diff)
Previous fix for [#29484] wasn't working right (did work in report file though).
this now shares code with RNA's 'pchan.matrix = matrix' tested with parent scale/rot/translation
Diffstat (limited to 'source/blender/blenkernel/intern/constraint.c')
-rw-r--r--source/blender/blenkernel/intern/constraint.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index 571c6c631a9..59667743520 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -302,7 +302,8 @@ void constraint_mat_convertspace (Object *ob, bPoseChannel *pchan, float mat[][4
/* override with local location */
if ((pchan->parent) && (pchan->bone->flag & BONE_NO_LOCAL_LOCATION)) {
- sub_v3_v3v3(mat[3], tempmat[3], pchan->bone->arm_mat[3]);
+ armature_mat_pose_to_bone_ex(ob, pchan, pchan->pose_mat, tempmat);
+ copy_v3_v3(mat[3], tempmat[3]);
}
}
}