Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_armature_types.h
| Show First 20 Lines • Show All 246 Lines • ▼ Show 20 Lines | #endif | ||||
| /** bone location is in armature space */ | /** bone location is in armature space */ | ||||
| BONE_NO_LOCAL_LOCATION = (1 << 22), | BONE_NO_LOCAL_LOCATION = (1 << 22), | ||||
| /** object child will use relative transform (like deform) */ | /** object child will use relative transform (like deform) */ | ||||
| BONE_RELATIVE_PARENTING = (1 << 23), | BONE_RELATIVE_PARENTING = (1 << 23), | ||||
| /** it will add the parent end roll to the inroll */ | /** it will add the parent end roll to the inroll */ | ||||
| BONE_ADD_PARENT_END_ROLL = (1 << 24), | BONE_ADD_PARENT_END_ROLL = (1 << 24), | ||||
| /** this bone was transformed by the mirror function */ | /** this bone was transformed by the mirror function */ | ||||
| BONE_TRANSFORM_MIRROR = (1 << 25), | BONE_TRANSFORM_MIRROR = (1 << 25), | ||||
| /** this bone is associated with a locked vertex group, ONLY USE FOR DRAWING */ | |||||
| BONE_DRAW_LOCKED_WEIGHT = (1 << 26), | |||||
| } eBone_Flag; | } eBone_Flag; | ||||
| /* bone->inherit_scale_mode */ | /* bone->inherit_scale_mode */ | ||||
| typedef enum eBone_InheritScaleMode { | typedef enum eBone_InheritScaleMode { | ||||
| /* Inherit all scale and shear. */ | /* Inherit all scale and shear. */ | ||||
| BONE_INHERIT_SCALE_FULL = 0, | BONE_INHERIT_SCALE_FULL = 0, | ||||
| /* Inherit scale, but remove final shear. */ | /* Inherit scale, but remove final shear. */ | ||||
| BONE_INHERIT_SCALE_FIX_SHEAR, | BONE_INHERIT_SCALE_FIX_SHEAR, | ||||
| Show All 21 Lines | |||||