Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_object_types.h
| Show First 20 Lines • Show All 362 Lines • ▼ Show 20 Lines | typedef struct Object { | ||||
| /** Particle deflector/attractor/collision data. */ | /** Particle deflector/attractor/collision data. */ | ||||
| struct PartDeflect *pd; | struct PartDeflect *pd; | ||||
| /** If exists, saved in file. */ | /** If exists, saved in file. */ | ||||
| struct SoftBody *soft; | struct SoftBody *soft; | ||||
| /** Object duplicator for group. */ | /** Object duplicator for group. */ | ||||
| struct Collection *instance_collection; | struct Collection *instance_collection; | ||||
| /** If fluidsim enabled, store additional settings. */ | /** If fluidsim enabled, store additional settings. */ | ||||
| struct FluidsimSettings *fluidsimSettings; | struct FluidsimSettings *fluidsimSettings | ||||
| DNA_DEPRECATED; // XXX deprecated... replaced by mantaflow, keep for readfile | |||||
| struct DerivedMesh *derivedDeform, *derivedFinal; | struct DerivedMesh *derivedDeform, *derivedFinal; | ||||
| ListBase pc_ids; | ListBase pc_ids; | ||||
| /** Settings for Bullet rigid body. */ | /** Settings for Bullet rigid body. */ | ||||
| struct RigidBodyOb *rigidbody_object; | struct RigidBodyOb *rigidbody_object; | ||||
| /** Settings for Bullet constraint. */ | /** Settings for Bullet constraint. */ | ||||
| ▲ Show 20 Lines • Show All 321 Lines • Show Last 20 Lines | |||||