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:
authorSebastian Parborg <darkdefende@gmail.com>2019-06-06 16:52:52 +0300
committerSebastian Parborg <darkdefende@gmail.com>2019-06-06 16:54:49 +0300
commit93ec2c94e5afef18563cbefa0d12275ebabb7ff0 (patch)
tree0737c00fa59f32a55573e17bb2a42f91d2f5b6e5 /source/blender/makesdna
parent3a20c056e89a50ee39a228f59868c26ac750fac8 (diff)
Fix T64533: Using "X-Axis Mirror" while posing with auto keyframe on does not keyframe the mirrored bone
Use an additional pose bone flag so we can keep track of mirrored bones that should be autokeyframed. Reviewed By: Brecht Differential Revision: https://developer.blender.org/D5033
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_armature_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_armature_types.h b/source/blender/makesdna/DNA_armature_types.h
index b18ab503e94..589b657e5b8 100644
--- a/source/blender/makesdna/DNA_armature_types.h
+++ b/source/blender/makesdna/DNA_armature_types.h
@@ -249,6 +249,8 @@ typedef enum eBone_Flag {
BONE_RELATIVE_PARENTING = (1 << 23),
/** it will add the parent end roll to the inroll */
BONE_ADD_PARENT_END_ROLL = (1 << 24),
+ /** this bone was transformed by the mirror function */
+ BONE_TRANSFORM_MIRROR = (1 << 25),
} eBone_Flag;