Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_scene_types.h
| Context not available. | |||||
| #define MINAFRAME -1048574 | #define MINAFRAME -1048574 | ||||
| #define MINAFRAMEF -1048574.0f | #define MINAFRAMEF -1048574.0f | ||||
| #define BASE_VISIBLE(v3d, base) BKE_base_is_visible(v3d, base) | #define BASE_VISIBLE(v3d, base) \ | ||||
| (((v3d == NULL) || ((v3d)->localvd == NULL) || \ | |||||
| ((v3d)->local_view_uuid & (base)->local_view_bits)) && \ | |||||
| ((v3d == NULL) || (((v3d)->flag & V3D_LOCAL_COLLECTIONS) == 0) || \ | |||||
| ((v3d)->local_collections_uuid & (base)->local_collections_bits)) && \ | |||||
| ((v3d == NULL) || \ | |||||
| (((1 << (base)->object->type) & (v3d)->object_type_exclude_viewport) == 0)) && \ | |||||
| (((base)->flag & BASE_VISIBLE) != 0)) | |||||
| #define BASE_SELECTABLE(v3d, base) \ | #define BASE_SELECTABLE(v3d, base) \ | ||||
| (BASE_VISIBLE(v3d, base) && \ | (BASE_VISIBLE(v3d, base) && \ | ||||
| ((v3d == NULL) || (((1 << (base)->object->type) & (v3d)->object_type_exclude_select) == 0)) && \ | ((v3d == NULL) || (((1 << (base)->object->type) & (v3d)->object_type_exclude_select) == 0)) && \ | ||||
| Context not available. | |||||