Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show First 20 Lines • Show All 120 Lines • ▼ Show 20 Lines | typedef struct Object_Runtime { | ||||
| /** Did last modifier stack generation need mapping support? */ | /** Did last modifier stack generation need mapping support? */ | ||||
| char last_need_mapping; | char last_need_mapping; | ||||
| 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. It might differ between an evaluated and its original object, | |||||
| * when the object is being instanced. | |||||
| */ | |||||
| int select_id; | int select_id; | ||||
| 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; | ||||
| ▲ Show 20 Lines • Show All 564 Lines • Show Last 20 Lines | |||||