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:
authorChris Want <cwant@ualberta.ca>2003-01-28 08:16:41 +0300
committerChris Want <cwant@ualberta.ca>2003-01-28 08:16:41 +0300
commit9ca562765b3b765aeee7eb487eded0093c5be935 (patch)
treeb0933060c7970c52193c0b6a13821e7fb5f36469 /source/blender/makesdna/DNA_armature_types.h
parente36159ce85c6b6cb9393b3a2c4f04d45901b94e8 (diff)
Added x-ray bones support (sgefant ended up
doing the bulk of the work when he added the button). The new x-ray button is added in the edit buttons when the armature is selected. (suggested by ztonzy)
Diffstat (limited to 'source/blender/makesdna/DNA_armature_types.h')
-rw-r--r--source/blender/makesdna/DNA_armature_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_armature_types.h b/source/blender/makesdna/DNA_armature_types.h
index af80a69046f..95dc6d8689e 100644
--- a/source/blender/makesdna/DNA_armature_types.h
+++ b/source/blender/makesdna/DNA_armature_types.h
@@ -75,7 +75,7 @@ typedef struct bArmature {
enum {
ARM_RESTPOSBIT = 0,
- ARM_UNUSED1BIT, /* Free for use */
+ ARM_DRAWXRAYBIT,
ARM_DRAWAXESBIT,
ARM_DRAWNAMESBIT,
ARM_POSEBIT,
@@ -84,7 +84,7 @@ enum {
enum {
ARM_RESTPOS = 0x00000001,
- ARM_UNUSED1 = 0x00000002, /* Free for use */
+ ARM_DRAWXRAY = 0x00000002,
ARM_DRAWAXES = 0x00000004,
ARM_DRAWNAMES = 0x00000008,
ARM_POSEMODE = 0x00000010,