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 /examples3d/debug_big_colliders3.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 'examples3d/debug_big_colliders3.rs')
| -rw-r--r-- | examples3d/debug_big_colliders3.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples3d/debug_big_colliders3.rs b/examples3d/debug_big_colliders3.rs index d221a05..680e24e 100644 --- a/examples3d/debug_big_colliders3.rs +++ b/examples3d/debug_big_colliders3.rs @@ -13,7 +13,7 @@ pub fn init_world(testbed: &mut Testbed) { /* * Ground */ - let rigid_body = RigidBodyBuilder::new_static(); + let rigid_body = RigidBodyBuilder::fixed(); let handle = bodies.insert(rigid_body); let halfspace = SharedShape::new(HalfSpace::new(Vector::y_axis())); let collider = ColliderBuilder::new(halfspace); @@ -26,7 +26,7 @@ pub fn init_world(testbed: &mut Testbed) { let curr_height = 0.1f32.min(curr_width); curr_y += curr_height * 4.0; - let rigid_body = RigidBodyBuilder::new_dynamic().translation(vector![0.0, curr_y, 0.0]); + let rigid_body = RigidBodyBuilder::dynamic().translation(vector![0.0, curr_y, 0.0]); let handle = bodies.insert(rigid_body); let collider = ColliderBuilder::cuboid(curr_width, curr_height, curr_width); colliders.insert_with_parent(collider, handle, &mut bodies); |
