From 36e85d0708e53a01731dfa95a9a2b4792ef03fe2 Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 2 Oct 2022 17:36:30 +0200 Subject: Add a character controller implementation --- 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 3a97d39..aa3782b 100644 --- a/examples2d/all_examples2.rs +++ b/examples2d/all_examples2.rs @@ -10,6 +10,7 @@ use std::cmp::Ordering; mod add_remove2; mod ccd2; +mod character_controller2; mod collision_groups2; mod convex_polygons2; mod damping2; @@ -61,6 +62,7 @@ pub fn main() { let mut builders: Vec<(_, fn(&mut Testbed))> = vec![ ("Add remove", add_remove2::init_world), ("CCD", ccd2::init_world), + ("Character controller", character_controller2::init_world), ("Collision groups", collision_groups2::init_world), ("Convex polygons", convex_polygons2::init_world), ("Damping", damping2::init_world), -- cgit