aboutsummaryrefslogtreecommitdiff
path: root/examples3d/all_examples3.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-11-10 17:03:28 +0100
committerCrozet Sébastien <developer@crozet.re>2020-11-10 17:03:28 +0100
commitda5f47df47c3eedd05b476856b7aedc3051f6aa9 (patch)
treec452b29da5131504f3bb23f8892bd6775a164dc8 /examples3d/all_examples3.rs
parent2102aeb4229a51afc1e050ca8d999e87230adbc0 (diff)
downloadrapier-da5f47df47c3eedd05b476856b7aedc3051f6aa9.tar.gz
rapier-da5f47df47c3eedd05b476856b7aedc3051f6aa9.tar.bz2
rapier-da5f47df47c3eedd05b476856b7aedc3051f6aa9.zip
Move the infinite fall debug example to the 3D examples.
All our other debug examples were there.
Diffstat (limited to 'examples3d/all_examples3.rs')
-rw-r--r--examples3d/all_examples3.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs
index 9c1dffc..d0efa0e 100644
--- a/examples3d/all_examples3.rs
+++ b/examples3d/all_examples3.rs
@@ -16,6 +16,7 @@ mod compound3;
mod damping3;
mod debug_boxes3;
mod debug_cylinder3;
+mod debug_infinite_fall3;
mod debug_triangle3;
mod debug_trimesh3;
mod domino3;
@@ -84,6 +85,7 @@ pub fn main() {
("(Debug) triangle", debug_triangle3::init_world),
("(Debug) trimesh", debug_trimesh3::init_world),
("(Debug) cylinder", debug_cylinder3::init_world),
+ ("(Debug) infinite fall", debug_infinite_fall3::init_world),
];
// Lexicographic sort, with stress tests moved at the end of the list.