aboutsummaryrefslogtreecommitdiff
path: root/examples2d/all_examples2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples2d/all_examples2.rs')
-rw-r--r--examples2d/all_examples2.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs
index 0ebef88..92606d8 100644
--- a/examples2d/all_examples2.rs
+++ b/examples2d/all_examples2.rs
@@ -11,11 +11,14 @@ use rapier_testbed2d::Testbed;
use std::cmp::Ordering;
mod add_remove2;
+mod collision_groups2;
+mod damping2;
mod debug_box_ball2;
mod heightfield2;
mod joints2;
mod platform2;
mod pyramid2;
+mod restitution2;
mod sensor2;
fn demo_name_from_command_line() -> Option<String> {
@@ -52,10 +55,13 @@ pub fn main() {
let mut builders: Vec<(_, fn(&mut Testbed))> = vec![
("Add remove", add_remove2::init_world),
+ ("Collision groups", collision_groups2::init_world),
+ ("Damping", damping2::init_world),
("Heightfield", heightfield2::init_world),
("Joints", joints2::init_world),
("Platform", platform2::init_world),
("Pyramid", pyramid2::init_world),
+ ("Restitution", restitution2::init_world),
("Sensor", sensor2::init_world),
("(Debug) box ball", debug_box_ball2::init_world),
];