diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-11-10 16:58:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-10 16:58:00 +0100 |
| commit | 2102aeb4229a51afc1e050ca8d999e87230adbc0 (patch) | |
| tree | 13846684505bd005848b3ba6156a151be8c6ee9a /examples2d/all_examples2.rs | |
| parent | 1dd25d2c3a17aa13dbe3557180a64556057c9a1e (diff) | |
| parent | 1097c630062129cc0a5137ac18e5bfbecf48f85a (diff) | |
| download | rapier-2102aeb4229a51afc1e050ca8d999e87230adbc0.tar.gz rapier-2102aeb4229a51afc1e050ca8d999e87230adbc0.tar.bz2 rapier-2102aeb4229a51afc1e050ca8d999e87230adbc0.zip | |
Merge pull request #30 from robert-hrusecky/infinite_fall_memory
Infinite fall memory fix for #14
Diffstat (limited to 'examples2d/all_examples2.rs')
| -rw-r--r-- | examples2d/all_examples2.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs index 92606d8..2fe39e5 100644 --- a/examples2d/all_examples2.rs +++ b/examples2d/all_examples2.rs @@ -14,6 +14,7 @@ mod add_remove2; mod collision_groups2; mod damping2; mod debug_box_ball2; +mod debug_infinite_fall; mod heightfield2; mod joints2; mod platform2; @@ -64,6 +65,7 @@ pub fn main() { ("Restitution", restitution2::init_world), ("Sensor", sensor2::init_world), ("(Debug) box ball", debug_box_ball2::init_world), + ("(Debug) infinite fall", debug_infinite_fall::init_world), ]; // Lexicographic sort, with stress tests moved at the end of the list. |
