Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show First 20 Lines • Show All 122 Lines • ▼ Show 20 Lines | typedef struct Object_Runtime { | ||||
| char _pad0[3]; | char _pad0[3]; | ||||
| /** Only used for drawing the parent/child help-line. */ | /** Only used for drawing the parent/child help-line. */ | ||||
| float parent_display_origin[3]; | float parent_display_origin[3]; | ||||
| /** Selection id of this object; only available in the original object */ | /** Selection id of this object; only available in the original object */ | ||||
| int select_id; | int select_id; | ||||
| char _pad1[3]; | /** Select id of this object; copied from the original object shortly before rendering. */ | ||||
| int select_id_cow; | |||||
| char _pad1[7]; | |||||
| /** | /** | ||||
| * 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; | ||||
| /** Axis aligned boundbox (in localspace). */ | /** Axis aligned boundbox (in localspace). */ | ||||
| ▲ Show 20 Lines • Show All 562 Lines • Show Last 20 Lines | |||||