Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show First 20 Lines • Show All 185 Lines • ▼ Show 20 Lines | typedef struct Object { | ||||
| bAnimVizSettings avs; /* settings for visualization of object-transform animation */ | bAnimVizSettings avs; /* settings for visualization of object-transform animation */ | ||||
| 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 greasepencil_modifiers; /* list of GpencilModifierData structures */ | |||||
| ListBase fmaps; /* list of facemaps */ | ListBase fmaps; /* list of facemaps */ | ||||
| int mode; /* Local object mode */ | int mode; /* Local object mode */ | ||||
| int restore_mode; | int restore_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 */ | ||||
| ▲ Show 20 Lines • Show All 413 Lines • Show Last 20 Lines | |||||