Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show First 20 Lines • Show All 163 Lines • ▼ Show 20 Lines | typedef struct Object { | ||||
| bMotionPath *mpath; /* motion path cache for this object */ | bMotionPath *mpath; /* motion path cache for this object */ | ||||
| void *pad1; | void *pad1; | ||||
| ListBase constraintChannels DNA_DEPRECATED; // XXX deprecated... old animation system | ListBase constraintChannels DNA_DEPRECATED; // XXX deprecated... old animation system | ||||
| ListBase effect DNA_DEPRECATED; // XXX deprecated... keep for readfile | ListBase effect DNA_DEPRECATED; // XXX deprecated... keep for readfile | ||||
| ListBase defbase; /* list of bDeformGroup (vertex groups) names and flag only */ | ListBase defbase; /* list of bDeformGroup (vertex groups) names and flag only */ | ||||
| ListBase modifiers; /* list of ModifierData structures */ | ListBase modifiers; /* list of ModifierData structures */ | ||||
| ListBase fmaps; /* list of facemaps */ | ListBase fmaps; /* list of facemaps */ | ||||
| /* Local object mode: Don't change directly! Use BKE_workspace_object_mode_ API. */ | |||||
| int mode; /* Local object mode */ | int mode; /* Local object mode */ | ||||
| int restore_mode; /* Keep track of what mode to return to after toggling a mode */ | int restore_mode DNA_DEPRECATED; /* Keep track of what mode to return to after toggling a mode */ | ||||
| /* materials */ | /* materials */ | ||||
| struct Material **mat; /* material slots */ | struct Material **mat; /* material slots */ | ||||
| char *matbits; /* a boolean field, with each byte 1 if corresponding material is linked to object */ | char *matbits; /* a boolean field, with each byte 1 if corresponding material is linked to object */ | ||||
| int totcol; /* copy of mesh, curve & meta struct member of same name (keep in sync) */ | int totcol; /* copy of mesh, curve & meta struct member of same name (keep in sync) */ | ||||
| int actcol; /* currently selected material in the UI */ | int actcol; /* currently selected material in the UI */ | ||||
| /* rot en drot have to be together! (transform('r' en 's')) */ | /* rot en drot have to be together! (transform('r' en 's')) */ | ||||
| ▲ Show 20 Lines • Show All 558 Lines • Show Last 20 Lines | |||||