Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_collection_types.h
| Show All 40 Lines | |||||
| enum eCollectionLineArt_Flags { | enum eCollectionLineArt_Flags { | ||||
| COLLECTION_LRT_USE_INTERSECTION_MASK = (1 << 0), | COLLECTION_LRT_USE_INTERSECTION_MASK = (1 << 0), | ||||
| COLLECTION_LRT_USE_INTERSECTION_PRIORITY = (1 << 1), | COLLECTION_LRT_USE_INTERSECTION_PRIORITY = (1 << 1), | ||||
| }; | }; | ||||
| typedef struct Collection { | typedef struct Collection { | ||||
| ID id; | ID id; | ||||
| /** The ID owning this node tree, in case it is an embedded one. */ | |||||
| ID *owner_id; | |||||
| /** CollectionObject. */ | /** CollectionObject. */ | ||||
| ListBase gobject; | ListBase gobject; | ||||
| /** CollectionChild. */ | /** CollectionChild. */ | ||||
| ListBase children; | ListBase children; | ||||
| struct PreviewImage *preview; | struct PreviewImage *preview; | ||||
| unsigned int layer DNA_DEPRECATED; | unsigned int layer DNA_DEPRECATED; | ||||
| ▲ Show 20 Lines • Show All 69 Lines • Show Last 20 Lines | |||||