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_articulations3.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_articulations3.rs')
| -rw-r--r-- | examples3d/debug_articulations3.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples3d/debug_articulations3.rs b/examples3d/debug_articulations3.rs index 0dbc66a..e844630 100644 --- a/examples3d/debug_articulations3.rs +++ b/examples3d/debug_articulations3.rs @@ -20,7 +20,7 @@ fn create_ball_articulations( let status = if i == 0 { // && (k % 4 == 0 || k == num - 1) { - RigidBodyType::Static + RigidBodyType::Fixed } else { RigidBodyType::Dynamic }; @@ -74,7 +74,7 @@ pub fn init_world(testbed: &mut Testbed) { .rotation(vector![0.1, 0.0, 0.1]); colliders.insert(collider); - let rigid_body = RigidBodyBuilder::new_dynamic(); + let rigid_body = RigidBodyBuilder::dynamic(); let collider = ColliderBuilder::cuboid(30.0, 0.01, 30.0) .translation(vector![0.0, -3.0, 0.0]) .rotation(vector![0.1, 0.0, 0.1]); |
