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:
authorTon Roosendaal <ton@blender.org>2007-11-09 17:58:55 +0300
committerTon Roosendaal <ton@blender.org>2007-11-09 17:58:55 +0300
commit62f8e6fc23557796dd009d5262648a505b3bae9e (patch)
tree4b08e0e3dd0edc17dc31d1aff6132c88c72a9ce9 /source/blender/makesdna/DNA_armature_types.h
parent42a2b662d307982a40388fbe6e41d786b681a2a6 (diff)
Quick added feature: the "do not get scaling from parent bone" option.
It's next to the 'hinge' button, a small 'S'. No more space here... will make it nicer inferface later. :) Let's first see if this works as expected.
Diffstat (limited to 'source/blender/makesdna/DNA_armature_types.h')
-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 9f64a31c90c..f178820ac02 100644
--- a/source/blender/makesdna/DNA_armature_types.h
+++ b/source/blender/makesdna/DNA_armature_types.h
@@ -150,5 +150,7 @@ typedef struct bArmature {
#define BONE_UNKEYED 8192
/* set to prevent hinge child bones from influencing the transform center */
#define BONE_HINGE_CHILD_TRANSFORM 16384
+ /* No parent scale */
+#define BONE_NO_SCALE (1<<15)
#endif