Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show First 20 Lines • Show All 290 Lines • ▼ Show 20 Lines | typedef struct Object { | ||||
| struct RigidBodyOb *rigidbody_object; /* settings for Bullet rigid body */ | struct RigidBodyOb *rigidbody_object; /* settings for Bullet rigid body */ | ||||
| struct RigidBodyCon *rigidbody_constraint; /* settings for Bullet constraint */ | struct RigidBodyCon *rigidbody_constraint; /* settings for Bullet constraint */ | ||||
| float ima_ofs[2]; /* offset for image empties */ | float ima_ofs[2]; /* offset for image empties */ | ||||
| ImageUser *iuser; /* must be non-null when oject is an empty image */ | ImageUser *iuser; /* must be non-null when oject is an empty image */ | ||||
| ListBase lodlevels; /* contains data for levels of detail */ | ListBase lodlevels; /* contains data for levels of detail */ | ||||
| LodLevel *currentlod; | LodLevel *currentlod; | ||||
| struct PreviewImage *preview; | |||||
| } Object; | } Object; | ||||
| /* Warning, this is not used anymore because hooks are now modifiers */ | /* Warning, this is not used anymore because hooks are now modifiers */ | ||||
| typedef struct ObHook { | typedef struct ObHook { | ||||
| struct ObHook *next, *prev; | struct ObHook *next, *prev; | ||||
| struct Object *parent; | struct Object *parent; | ||||
| float parentinv[4][4]; /* matrix making current transform unmodified */ | float parentinv[4][4]; /* matrix making current transform unmodified */ | ||||
| ▲ Show 20 Lines • Show All 386 Lines • Show Last 20 Lines | |||||