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>2020-03-22 04:09:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-22 04:17:25 +0300
commitad7bb8e42c385f6777e14649bd238de2348ad31b (patch)
tree503a787291a8dc7b7072d6fd0b03fcdd45ea0af1 /source/blender/editors/animation
parent1e4f6b231ce54e894b308c00e56525c085db8781 (diff)
Cleanup: spelling, correct Mesh.mface docs
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/keyframing.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c
index 96b834492dd..e66ebb1928c 100644
--- a/source/blender/editors/animation/keyframing.c
+++ b/source/blender/editors/animation/keyframing.c
@@ -2937,10 +2937,10 @@ bool ED_autokeyframe_object(bContext *C, Scene *scene, Object *ob, KeyingSet *ks
if (autokeyframe_cfra_can_key(scene, &ob->id)) {
ListBase dsources = {NULL, NULL};
- /* now insert the keyframe(s) using the Keying Set
- * 1) add datasource override for the Object
- * 2) insert keyframes
- * 3) free the extra info
+ /* Now insert the key-frame(s) using the Keying Set:
+ * 1) Add data-source override for the Object.
+ * 2) Insert key-frames.
+ * 3) Free the extra info.
*/
ANIM_relative_keyingset_add_source(&dsources, &ob->id, NULL, NULL);
ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, (float)CFRA);
@@ -2959,10 +2959,10 @@ bool ED_autokeyframe_pchan(
if (autokeyframe_cfra_can_key(scene, &ob->id)) {
ListBase dsources = {NULL, NULL};
- /* now insert the keyframe(s) using the Keying Set
- * 1) add datasource override for the PoseChannel
- * 2) insert keyframes
- * 3) free the extra info
+ /* Now insert the keyframe(s) using the Keying Set:
+ * 1) Add data-source override for the pose-channel.
+ * 2) Insert key-frames.
+ * 3) Free the extra info.
*/
ANIM_relative_keyingset_add_source(&dsources, &ob->id, &RNA_PoseBone, pchan);
ANIM_apply_keyingset(C, &dsources, NULL, ks, MODIFYKEY_MODE_INSERT, (float)CFRA);