Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show First 20 Lines • Show All 138 Lines • ▼ Show 20 Lines | typedef struct Object_Runtime { | ||||
| char _pad1[3]; | char _pad1[3]; | ||||
| /** | /** | ||||
| * Denotes whether the evaluated data is owned by this object or is referenced and owned by | * Denotes whether the evaluated data is owned by this object or is referenced and owned by | ||||
| * somebody else. | * somebody else. | ||||
| */ | */ | ||||
| char is_data_eval_owned; | char is_data_eval_owned; | ||||
| /** Start time of the flash overlay animation. */ | |||||
| double overlay_flash_start_time; | |||||
| /** Axis aligned boundbox (in localspace). */ | /** Axis aligned boundbox (in localspace). */ | ||||
| struct BoundBox *bb; | struct BoundBox *bb; | ||||
| /** | /** | ||||
| * Original data pointer, before object->data was changed to point | * Original data pointer, before object->data was changed to point | ||||
| * to data_eval. | * to data_eval. | ||||
| * Is assigned by dependency graph's copy-on-write evaluation. | * Is assigned by dependency graph's copy-on-write evaluation. | ||||
| */ | */ | ||||
| ▲ Show 20 Lines • Show All 608 Lines • Show Last 20 Lines | |||||