aboutsummaryrefslogtreecommitdiff
path: root/examples3d/debug_boxes3.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2022-03-19 16:23:09 +0100
committerSébastien Crozet <sebastien@crozet.re>2022-03-20 21:49:16 +0100
commita9e3441ecd64d50b478ab5370fabe187ec9a5c39 (patch)
tree92b2e4ee3d3599a446f15551cc74e8e71b9c6150 /examples3d/debug_boxes3.rs
parentdb6a8c526d939a125485c89cfb6e540422fe6b4b (diff)
downloadrapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.tar.gz
rapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.tar.bz2
rapier-a9e3441ecd64d50b478ab5370fabe187ec9a5c39.zip
Rename rigid-body `static` to `fixed`
Diffstat (limited to 'examples3d/debug_boxes3.rs')
-rw-r--r--examples3d/debug_boxes3.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/examples3d/debug_boxes3.rs b/examples3d/debug_boxes3.rs
index 908985b..1bd1504 100644
--- a/examples3d/debug_boxes3.rs
+++ b/examples3d/debug_boxes3.rs
@@ -17,8 +17,7 @@ pub fn init_world(testbed: &mut Testbed) {
let ground_height = 0.1;
for _ in 0..6 {
- let rigid_body =
- RigidBodyBuilder::new_static().translation(vector![0.0, -ground_height, 0.0]);
+ let rigid_body = RigidBodyBuilder::fixed().translation(vector![0.0, -ground_height, 0.0]);
let handle = bodies.insert(rigid_body);
let collider = ColliderBuilder::cuboid(ground_size, ground_height, ground_size);
colliders.insert_with_parent(collider, handle, &mut bodies);
@@ -26,7 +25,7 @@ pub fn init_world(testbed: &mut Testbed) {
// Build the dynamic box rigid body.
for _ in 0..2 {
- let rigid_body = RigidBodyBuilder::new_dynamic()
+ let rigid_body = RigidBodyBuilder::dynamic()
.translation(vector![1.1, 0.0, 0.0])
// .rotation(vector![0.8, 0.2, 0.1])
.can_sleep(false);