Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_layer_types.h
| Context not available. | |||||
| BASE_HIDDEN = (1 << 8), /* Object is hidden for editing. */ | BASE_HIDDEN = (1 << 8), /* Object is hidden for editing. */ | ||||
| /* Runtime evaluated flags. */ | /* Runtime evaluated flags. */ | ||||
| BASE_VISIBLE_DEPSGRAPH = (1 << 1), /* Object is enabled and visible for the depsgraph. */ | BASE_VISIBLE = (1 << 1), /* Object is enabled and visible. */ | ||||
| BASE_SELECTABLE = (1 << 2), /* Object can be selected. */ | BASE_SELECTABLE = (1 << 2), /* Object can be selected. */ | ||||
| BASE_FROM_DUPLI = (1 << 3), /* Object comes from duplicator. */ | BASE_FROM_DUPLI = (1 << 3), /* Object comes from duplicator. */ | ||||
| BASE_VISIBLE_VIEWLAYER = (1 << 4), /* Object is enabled and visible for the viewlayer. */ | /* BASE_DEPRECATED = (1 << 4), */ | ||||
| BASE_FROM_SET = (1 << 5), /* Object comes from set. */ | BASE_FROM_SET = (1 << 5), /* Object comes from set. */ | ||||
| BASE_ENABLED_VIEWPORT = (1 << 6), /* Object is enabled in viewport. */ | BASE_ENABLED_VIEWPORT = (1 << 6), /* Object is enabled in viewport. */ | ||||
| BASE_ENABLED_RENDER = (1 << 7), /* Object is enabled in final render */ | BASE_ENABLED_RENDER = (1 << 7), /* Object is enabled in final render */ | ||||
| /* BASE_DEPRECATED = (1 << 9), */ | /* BASE_DEPRECATED = (1 << 9), */ | ||||
| BASE_HOLDOUT = (1 << 10), /* Object masked out from render */ | BASE_HOLDOUT = (1 << 10), /* Object masked out from render */ | ||||
| BASE_INDIRECT_ONLY = (1 << 11), /* Object only contributes indirectly to render */ | BASE_INDIRECT_ONLY = (1 << 11), /* Object only contributes indirectly to render */ | ||||
| Context not available. | |||||
| LAYER_COLLECTION_HIDE = (1 << 7), | LAYER_COLLECTION_HIDE = (1 << 7), | ||||
| }; | }; | ||||
| /* Layer Collection->runtime_flag | /* Layer Collection->runtime_flag */ | ||||
| Keep it synced with base->flag based on g_base_collection_flags. */ | |||||
| enum { | enum { | ||||
| LAYER_COLLECTION_HAS_OBJECTS = (1 << 0), | LAYER_COLLECTION_HAS_OBJECTS = (1 << 0), | ||||
| LAYER_COLLECTION_VISIBLE_DEPSGRAPH = (1 << 1), | LAYER_COLLECTION_VISIBLE = (1 << 1), | ||||
| LAYER_COLLECTION_RESTRICT_VIEWPORT = (1 << 2), | |||||
| LAYER_COLLECTION_VISIBLE_VIEW_LAYER = (1 << 4), | |||||
| }; | }; | ||||
| /* ViewLayer->flag */ | /* ViewLayer->flag */ | ||||
| Context not available. | |||||