diff options
| author | Sébastien Crozet <developer@crozet.re> | 2022-03-19 16:23:09 +0100 |
|---|---|---|
| committer | Sébastien Crozet <sebastien@crozet.re> | 2022-03-20 21:49:16 +0100 |
| commit | a9e3441ecd64d50b478ab5370fabe187ec9a5c39 (patch) | |
| tree | 92b2e4ee3d3599a446f15551cc74e8e71b9c6150 /examples2d/add_remove2.rs | |
| parent | db6a8c526d939a125485c89cfb6e540422fe6b4b (diff) | |
| download | rapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.tar.gz rapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.tar.bz2 rapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.zip | |
Rename rigid-body `static` to `fixed`
Diffstat (limited to 'examples2d/add_remove2.rs')
| -rw-r--r-- | examples2d/add_remove2.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples2d/add_remove2.rs b/examples2d/add_remove2.rs index 261071b..1405b51 100644 --- a/examples2d/add_remove2.rs +++ b/examples2d/add_remove2.rs @@ -14,7 +14,7 @@ pub fn init_world(testbed: &mut Testbed) { let platform_handles = positions .into_iter() .map(|pos| { - let rigid_body = RigidBodyBuilder::new_kinematic_position_based().translation(pos); + let rigid_body = RigidBodyBuilder::kinematic_position_based().translation(pos); let handle = bodies.insert(rigid_body); let collider = ColliderBuilder::cuboid(rad * 10.0, rad); colliders.insert_with_parent(collider, handle, &mut bodies); @@ -33,7 +33,7 @@ pub fn init_world(testbed: &mut Testbed) { if state.timestep_id % 10 == 0 { let x = rand::random::<f32>() * 10.0 - 5.0; let y = rand::random::<f32>() * 10.0 + 10.0; - let rigid_body = RigidBodyBuilder::new_dynamic().translation(vector![x, y]); + let rigid_body = RigidBodyBuilder::dynamic().translation(vector![x, y]); let handle = physics.bodies.insert(rigid_body); let collider = ColliderBuilder::cuboid(rad, rad); physics |
