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>2012-06-12 15:54:31 +0400
committerJoshua Leung <aligorith@gmail.com>2012-06-12 15:54:31 +0400
commit8489e100dc2ba50f4475469b190047a9b99cb6bc (patch)
tree59f733b8825a6857421c93ba857e50adec5a4c6f /source/blender/makesdna
parent2062ca6b6ce8393a85089df3a2b1fd51333450bb (diff)
Naming + Style tweaks for newly added flag for Action Constraint
Old names used could conflict with other things too easily in future
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_constraint_types.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/makesdna/DNA_constraint_types.h b/source/blender/makesdna/DNA_constraint_types.h
index aae167d05c6..6ca9a95400d 100644
--- a/source/blender/makesdna/DNA_constraint_types.h
+++ b/source/blender/makesdna/DNA_constraint_types.h
@@ -561,11 +561,11 @@ typedef enum eSameVolume_Modes {
SAMEVOL_Z
} eSameVolume_Modes;
-/* bActionConstraint.flag
- * WARNING: bitwise! */
-typedef enum eAction_flags {
- BONE_USE_OBJECT_ACTION = 1 << 0, /* Bones use "object" part of target action, instead of "same bone name" part. */
-} eAction_flags;
+/* bActionConstraint.flag */
+typedef enum eActionConstraint_Flags {
+ /* Bones use "object" part of target action, instead of "same bone name" part */
+ ACTCON_BONE_USE_OBJECT_ACTION = (1 << 0),
+} eActionConstraint_Flags;
/* Locked-Axis Values (Locked Track) */
typedef enum eLockAxis_Modes {