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>2008-06-29 07:58:46 +0400
committerJoshua Leung <aligorith@gmail.com>2008-06-29 07:58:46 +0400
commite27d635e186d6d8bb10a2efd5c43bbc76caff70f (patch)
treedf3b33a4ec731aeef30400d01a0c082aef8f2cb5 /source/blender/src
parentb98e53b8ac9aac9a8b649af97ae66a05587ed22c (diff)
Added autokey call for Flip Quats tool (Alt-F in PoseMode)
Diffstat (limited to 'source/blender/src')
-rw-r--r--source/blender/src/poseobject.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/src/poseobject.c b/source/blender/src/poseobject.c
index dcceea971f7..cc08bf53a72 100644
--- a/source/blender/src/poseobject.c
+++ b/source/blender/src/poseobject.c
@@ -1627,6 +1627,8 @@ void pose_flipquats(void)
pchan->quat[3]= -pchan->quat[3];
}
}
-
+
+ /* do autokey */
+ autokeyframe_pose_cb_func(ob, TFM_ROTATION, 0);
}