Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_armature_types.h
| Show First 20 Lines • Show All 261 Lines • ▼ Show 20 Lines | typedef enum eBone_InheritScaleMode { | ||||
| /* Inherit scale, but remove final shear. */ | /* Inherit scale, but remove final shear. */ | ||||
| BONE_INHERIT_SCALE_FIX_SHEAR, | BONE_INHERIT_SCALE_FIX_SHEAR, | ||||
| /* Inherit average scale. */ | /* Inherit average scale. */ | ||||
| BONE_INHERIT_SCALE_AVERAGE, | BONE_INHERIT_SCALE_AVERAGE, | ||||
| /* Inherit no scale or shear. */ | /* Inherit no scale or shear. */ | ||||
| BONE_INHERIT_SCALE_NONE, | BONE_INHERIT_SCALE_NONE, | ||||
| /* Inherit effects of shear on parent (same as old disabled Inherit Scale). */ | /* Inherit effects of shear on parent (same as old disabled Inherit Scale). */ | ||||
| BONE_INHERIT_SCALE_NONE_LEGACY, | BONE_INHERIT_SCALE_NONE_LEGACY, | ||||
| /* Inherit parent X scale as child X scale etc. */ | |||||
| BONE_INHERIT_SCALE_ALIGNED, | |||||
| } eBone_InheritScaleMode; | } eBone_InheritScaleMode; | ||||
| /* bone->bbone_prev_type, bbone_next_type */ | /* bone->bbone_prev_type, bbone_next_type */ | ||||
| typedef enum eBone_BBoneHandleType { | typedef enum eBone_BBoneHandleType { | ||||
| BBONE_HANDLE_AUTO = 0, /* Default mode based on parents & children. */ | BBONE_HANDLE_AUTO = 0, /* Default mode based on parents & children. */ | ||||
| BBONE_HANDLE_ABSOLUTE, /* Custom handle in absolute position mode. */ | BBONE_HANDLE_ABSOLUTE, /* Custom handle in absolute position mode. */ | ||||
| BBONE_HANDLE_RELATIVE, /* Custom handle in relative position mode. */ | BBONE_HANDLE_RELATIVE, /* Custom handle in relative position mode. */ | ||||
| BBONE_HANDLE_TANGENT, /* Custom handle in tangent mode (use direction, not location). */ | BBONE_HANDLE_TANGENT, /* Custom handle in tangent mode (use direction, not location). */ | ||||
| } eBone_BBoneHandleType; | } eBone_BBoneHandleType; | ||||
| #define MAXBONENAME 64 | #define MAXBONENAME 64 | ||||
| #endif | #endif | ||||