aboutsummaryrefslogtreecommitdiff
path: root/examples3d/all_examples3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples3d/all_examples3.rs')
-rw-r--r--examples3d/all_examples3.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs
index 7549fa6..82e72e3 100644
--- a/examples3d/all_examples3.rs
+++ b/examples3d/all_examples3.rs
@@ -13,8 +13,10 @@ use std::cmp::Ordering;
mod collision_groups3;
mod compound3;
mod damping3;
+mod debug_add_remove_collider3;
mod debug_boxes3;
mod debug_cylinder3;
+mod debug_dynamic_collider_add3;
mod debug_infinite_fall3;
mod debug_rollback3;
mod debug_triangle3;
@@ -82,7 +84,15 @@ pub fn main() {
("Sensor", sensor3::init_world),
("Trimesh", trimesh3::init_world),
("Keva tower", keva3::init_world),
+ (
+ "(Debug) add/rm collider",
+ debug_add_remove_collider3::init_world,
+ ),
("(Debug) boxes", debug_boxes3::init_world),
+ (
+ "(Debug) dyn. coll. add",
+ debug_dynamic_collider_add3::init_world,
+ ),
("(Debug) triangle", debug_triangle3::init_world),
("(Debug) trimesh", debug_trimesh3::init_world),
("(Debug) cylinder", debug_cylinder3::init_world),