aboutsummaryrefslogtreecommitdiff
path: root/examples3d/all_examples3.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2020-11-24 16:54:15 +0100
committerGitHub <noreply@github.com>2020-11-24 16:54:15 +0100
commitbdf2e15fdcff4c4757b4875354b2d6e8b9c6939d (patch)
tree097166c76d92921b269b28a1e115b3cef89d820b /examples3d/all_examples3.rs
parentc641114f016c47f6b22acc084610847f88ff5a66 (diff)
parentfcafcac66f1792ea155925e3de5055ef50910fb0 (diff)
downloadrapier-bdf2e15fdcff4c4757b4875354b2d6e8b9c6939d.tar.gz
rapier-bdf2e15fdcff4c4757b4875354b2d6e8b9c6939d.tar.bz2
rapier-bdf2e15fdcff4c4757b4875354b2d6e8b9c6939d.zip
Merge pull request #68 from dimforge/read_contacts
Allow access to contact information
Diffstat (limited to 'examples3d/all_examples3.rs')
-rw-r--r--examples3d/all_examples3.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples3d/all_examples3.rs b/examples3d/all_examples3.rs
index d0efa0e..88f3f8f 100644
--- a/examples3d/all_examples3.rs
+++ b/examples3d/all_examples3.rs
@@ -10,7 +10,6 @@ use inflector::Inflector;
use rapier_testbed3d::Testbed;
use std::cmp::Ordering;
-mod add_remove3;
mod collision_groups3;
mod compound3;
mod damping3;
@@ -20,6 +19,7 @@ mod debug_infinite_fall3;
mod debug_triangle3;
mod debug_trimesh3;
mod domino3;
+mod fountain3;
mod heightfield3;
mod joints3;
mod keva3;
@@ -67,7 +67,7 @@ pub fn main() {
.to_camel_case();
let mut builders: Vec<(_, fn(&mut Testbed))> = vec![
- ("Add remove", add_remove3::init_world),
+ ("Fountain", fountain3::init_world),
("Primitives", primitives3::init_world),
("Collision groups", collision_groups3::init_world),
("Compound", compound3::init_world),