aboutsummaryrefslogtreecommitdiff
path: root/examples3d/all_examples3.rs
diff options
context:
space:
mode:
authorSébastien Crozet <sebcrozet@dimforge.com>2024-04-14 15:56:47 +0200
committerSébastien Crozet <sebastien@crozet.re>2024-04-30 23:10:46 +0200
commit3ad9c5ad3ba58b3cd4f19c07c6c89880908e0878 (patch)
tree06d5253a5ced447c9453e4823ce43ffc1541cee5 /examples3d/all_examples3.rs
parent9c5c14070d0a0b0283f3943c0f95552c395f2b97 (diff)
downloadrapier-3ad9c5ad3ba58b3cd4f19c07c6c89880908e0878.tar.gz
rapier-3ad9c5ad3ba58b3cd4f19c07c6c89880908e0878.tar.bz2
rapier-3ad9c5ad3ba58b3cd4f19c07c6c89880908e0878.zip
feat: add a few more debug demos
Diffstat (limited to 'examples3d/all_examples3.rs')
-rw-r--r--examples3d/all_examples3.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs
index bac826e..1525c4c 100644
--- a/examples3d/all_examples3.rs
+++ b/examples3d/all_examples3.rs
@@ -23,9 +23,11 @@ mod debug_deserialize3;
mod debug_dynamic_collider_add3;
mod debug_friction3;
mod debug_infinite_fall3;
+mod debug_pop3;
mod debug_prismatic3;
mod debug_rollback3;
mod debug_shape_modification3;
+mod debug_thin_cube_on_mesh3;
mod debug_triangle3;
mod debug_trimesh3;
mod domino3;
@@ -124,6 +126,7 @@ pub fn main() {
),
("(Debug) big colliders", debug_big_colliders3::init_world),
("(Debug) boxes", debug_boxes3::init_world),
+ ("(Debug) pop", debug_pop3::init_world),
(
"(Debug) dyn. coll. add",
debug_dynamic_collider_add3::init_world,
@@ -141,6 +144,7 @@ pub fn main() {
),
("(Debug) triangle", debug_triangle3::init_world),
("(Debug) trimesh", debug_trimesh3::init_world),
+ ("(Debug) thin cube", debug_thin_cube_on_mesh3::init_world),
("(Debug) cylinder", debug_cylinder3::init_world),
("(Debug) infinite fall", debug_infinite_fall3::init_world),
("(Debug) prismatic", debug_prismatic3::init_world),