Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_outliner_types.h
| Show First 20 Lines • Show All 103 Lines • ▼ Show 20 Lines | |||||
| #define TSE_KEYMAP 34 /* NO ID */ | #define TSE_KEYMAP 34 /* NO ID */ | ||||
| #define TSE_KEYMAP_ITEM 35 /* NO ID */ | #define TSE_KEYMAP_ITEM 35 /* NO ID */ | ||||
| #define TSE_ID_BASE 36 /* NO ID */ | #define TSE_ID_BASE 36 /* NO ID */ | ||||
| #define TSE_GP_LAYER 37 /* NO ID */ | #define TSE_GP_LAYER 37 /* NO ID */ | ||||
| #define TSE_LAYER_COLLECTION 38 | #define TSE_LAYER_COLLECTION 38 | ||||
| #define TSE_SCENE_COLLECTION_BASE 39 | #define TSE_SCENE_COLLECTION_BASE 39 | ||||
| #define TSE_VIEW_COLLECTION_BASE 40 | #define TSE_VIEW_COLLECTION_BASE 40 | ||||
| #define TSE_SCENE_OBJECTS_BASE 41 | #define TSE_SCENE_OBJECTS_BASE 41 | ||||
| #define TSE_EFFECT_BASE 42 | |||||
| #define TSE_EFFECT 43 | |||||
| /* Check whether given TreeStoreElem should have a real ID in its ->id member. */ | /* Check whether given TreeStoreElem should have a real ID in its ->id member. */ | ||||
| #define TSE_IS_REAL_ID(_tse) \ | #define TSE_IS_REAL_ID(_tse) \ | ||||
| (!ELEM((_tse)->type, \ | (!ELEM((_tse)->type, \ | ||||
| TSE_NLA, \ | TSE_NLA, \ | ||||
| TSE_NLA_TRACK, \ | TSE_NLA_TRACK, \ | ||||
| TSE_DRIVER_BASE, \ | TSE_DRIVER_BASE, \ | ||||
| TSE_SEQUENCE, \ | TSE_SEQUENCE, \ | ||||
| Show All 9 Lines | |||||