Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show First 20 Lines • Show All 603 Lines • ▼ Show 20 Lines | enum { | ||||
| /** DEPRECATED, was runtime only, but was reusing an older flag. */ | /** DEPRECATED, was runtime only, but was reusing an older flag. */ | ||||
| BA_SNAP_FIX_DEPS_FIASCO = (1 << 2), | BA_SNAP_FIX_DEPS_FIASCO = (1 << 2), | ||||
| }; | }; | ||||
| /* NOTE: this was used as a proper setting in past, so nullify before using */ | /* NOTE: this was used as a proper setting in past, so nullify before using */ | ||||
| #define BA_TEMP_TAG (1 << 5) | #define BA_TEMP_TAG (1 << 5) | ||||
| /** | /** | ||||
| * Even if this is is tagged for transform, this flag means it's being locked in place. | * Even if this is tagged for transform, this flag means it's being locked in place. | ||||
| * Use for #SCE_XFORM_SKIP_CHILDREN. | * Use for #SCE_XFORM_SKIP_CHILDREN. | ||||
| */ | */ | ||||
| #define BA_TRANSFORM_LOCKED_IN_PLACE (1 << 7) | #define BA_TRANSFORM_LOCKED_IN_PLACE (1 << 7) | ||||
| #define BA_TRANSFORM_CHILD (1 << 8) /* child of a transformed object */ | #define BA_TRANSFORM_CHILD (1 << 8) /* child of a transformed object */ | ||||
| #define BA_TRANSFORM_PARENT (1 << 13) /* parent of a transformed object */ | #define BA_TRANSFORM_PARENT (1 << 13) /* parent of a transformed object */ | ||||
| #define OB_FROMDUPLI (1 << 9) | #define OB_FROMDUPLI (1 << 9) | ||||
| ▲ Show 20 Lines • Show All 88 Lines • Show Last 20 Lines | |||||