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:
authorJoshua Leung <aligorith@gmail.com>2009-01-30 01:24:16 +0300
committerJoshua Leung <aligorith@gmail.com>2009-01-30 01:24:16 +0300
commite109310ad73ef81ff8381fc91d519f1dda6059ef (patch)
tree55273f2d4615f0c986135f390c6f7fe5adf2a25b /source/blender/blenkernel
parent63ad011e9767c291608084008235cee0cc422d43 (diff)
Just a minor change to a comment in constraints code. It appears that Action Constraints are in fact working now (I was probably testing old code last night).
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/intern/constraint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/constraint.c b/source/blender/blenkernel/intern/constraint.c
index 53ea9032087..8136db3e33b 100644
--- a/source/blender/blenkernel/intern/constraint.c
+++ b/source/blender/blenkernel/intern/constraint.c
@@ -1894,7 +1894,7 @@ static void actcon_get_tarmat (bConstraint *con, bConstraintOb *cob, bConstraint
/* make a temporary pose and evaluate using that */
pose = MEM_callocN(sizeof(bPose), "pose");
- /* make a copy of the bone of interest in the temp pose */
+ /* make a copy of the bone of interest in the temp pose before evaluating action, so that it can get set */
pchan = cob->pchan;
tchan= verify_pose_channel(pose, pchan->name);