Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_rigidbody_types.h
| Show First 20 Lines • Show All 69 Lines • ▼ Show 20 Lines | typedef struct RigidBodyWorld { | ||||
| struct RigidBodyWorld_Shared *shared; | struct RigidBodyWorld_Shared *shared; | ||||
| /** Moved to shared->pointcache. */ | /** Moved to shared->pointcache. */ | ||||
| struct PointCache *pointcache DNA_DEPRECATED; | struct PointCache *pointcache DNA_DEPRECATED; | ||||
| /** Moved to shared->ptcaches. */ | /** Moved to shared->ptcaches. */ | ||||
| struct ListBase ptcaches DNA_DEPRECATED; | struct ListBase ptcaches DNA_DEPRECATED; | ||||
| /** Number of objects in rigid body group. */ | /** Number of objects in rigid body group. */ | ||||
| int numbodies; | int numbodies; | ||||
| /** Number of simulation steps thaken per second. */ | /** Number of simulation substeps steps taken per frame. */ | ||||
| short steps_per_second; | short substeps_per_frame; | ||||
| /** Number of constraint solver iterations made per simulation step. */ | /** Number of constraint solver iterations made per simulation step. */ | ||||
| short num_solver_iterations; | short num_solver_iterations; | ||||
| /** (eRigidBodyWorld_Flag) settings for this RigidBodyWorld. */ | /** (eRigidBodyWorld_Flag) settings for this RigidBodyWorld. */ | ||||
| int flag; | int flag; | ||||
| /** Used to speed up or slow down the simulation. */ | /** Used to speed up or slow down the simulation. */ | ||||
| float time_scale; | float time_scale; | ||||
| } RigidBodyWorld; | } RigidBodyWorld; | ||||
| ▲ Show 20 Lines • Show All 283 Lines • Show Last 20 Lines | |||||