aboutsummaryrefslogtreecommitdiff
path: root/examples2d/all_examples2.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2020-11-03 15:46:16 +0100
committerGitHub <noreply@github.com>2020-11-03 15:46:16 +0100
commita66f1175788c2626f0fbb510bbf1986cfd283b72 (patch)
tree60b0e03ee6345dcb4a4114ccb344486078116f84 /examples2d/all_examples2.rs
parentf70a840f79943aa6da49db2590e13dcd3f3a89ed (diff)
parentdb337c5df6de124e0fdff7eaa7aeebc28bfb27e6 (diff)
downloadrapier-a66f1175788c2626f0fbb510bbf1986cfd283b72.tar.gz
rapier-a66f1175788c2626f0fbb510bbf1986cfd283b72.tar.bz2
rapier-a66f1175788c2626f0fbb510bbf1986cfd283b72.zip
Merge pull request #55 from dimforge/damping
Add damping support + demos.
Diffstat (limited to 'examples2d/all_examples2.rs')
-rw-r--r--examples2d/all_examples2.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples2d/all_examples2.rs b/examples2d/all_examples2.rs
index 052d6cc..92606d8 100644
--- a/examples2d/all_examples2.rs
+++ b/examples2d/all_examples2.rs
@@ -12,6 +12,7 @@ use std::cmp::Ordering;
mod add_remove2;
mod collision_groups2;
+mod damping2;
mod debug_box_ball2;
mod heightfield2;
mod joints2;
@@ -55,6 +56,7 @@ pub fn main() {
let mut builders: Vec<(_, fn(&mut Testbed))> = vec![
("Add remove", add_remove2::init_world),
("Collision groups", collision_groups2::init_world),
+ ("Damping", damping2::init_world),
("Heightfield", heightfield2::init_world),
("Joints", joints2::init_world),
("Platform", platform2::init_world),