From 150b113a1839f31e182428a71b50d96bf78ef0e0 Mon Sep 17 00:00:00 2001 From: Wolftousen Date: Fri, 4 Nov 2022 23:47:54 -0400 Subject: Adding a Rope Joint --- examples2d/all_examples2.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples2d/all_examples2.rs') diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs index aa3782b..25dc73e 100644 --- a/examples2d/all_examples2.rs +++ b/examples2d/all_examples2.rs @@ -26,6 +26,7 @@ mod pyramid2; mod restitution2; mod sensor2; mod trimesh2; +mod rope_joints2; fn demo_name_from_command_line() -> Option { let mut args = std::env::args(); @@ -69,6 +70,7 @@ pub fn main() { ("Drum", drum2::init_world), ("Heightfield", heightfield2::init_world), ("Joints", joints2::init_world), + ("DistanceJoints", rope_joints2::init_world), ("Locked rotations", locked_rotations2::init_world), ("One-way platforms", one_way_platforms2::init_world), ("Platform", platform2::init_world), -- cgit From f71af8a827ab9ffe7038edf56ece0dd2f38a0fd9 Mon Sep 17 00:00:00 2001 From: Wolftousen Date: Sat, 5 Nov 2022 22:48:56 -0400 Subject: fix name change --- examples2d/all_examples2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples2d/all_examples2.rs') diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs index 25dc73e..6fecc9e 100644 --- a/examples2d/all_examples2.rs +++ b/examples2d/all_examples2.rs @@ -70,13 +70,13 @@ pub fn main() { ("Drum", drum2::init_world), ("Heightfield", heightfield2::init_world), ("Joints", joints2::init_world), - ("DistanceJoints", rope_joints2::init_world), ("Locked rotations", locked_rotations2::init_world), ("One-way platforms", one_way_platforms2::init_world), ("Platform", platform2::init_world), ("Polyline", polyline2::init_world), ("Pyramid", pyramid2::init_world), ("Restitution", restitution2::init_world), + ("Rope Joints", rope_joints2::init_world), ("Sensor", sensor2::init_world), ("Trimesh", trimesh2::init_world), ("(Debug) box ball", debug_box_ball2::init_world), -- cgit