From da5f47df47c3eedd05b476856b7aedc3051f6aa9 Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Tue, 10 Nov 2020 17:03:28 +0100 Subject: Move the infinite fall debug example to the 3D examples. All our other debug examples were there. --- examples2d/all_examples2.rs | 2 -- 1 file changed, 2 deletions(-) (limited to 'examples2d/all_examples2.rs') diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs index 2fe39e5..92606d8 100644 --- a/examples2d/all_examples2.rs +++ b/examples2d/all_examples2.rs @@ -14,7 +14,6 @@ mod add_remove2; mod collision_groups2; mod damping2; mod debug_box_ball2; -mod debug_infinite_fall; mod heightfield2; mod joints2; mod platform2; @@ -65,7 +64,6 @@ 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. -- cgit