aboutsummaryrefslogtreecommitdiff
path: root/examples3d/all_examples3.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-11-24 15:02:39 +0100
committerCrozet Sébastien <developer@crozet.re>2020-11-24 15:02:39 +0100
commit3379094f5af20187d7ee0d50717810956fa32254 (patch)
treed7083ea29e392cd1e5e0a61ff99493e08b04adbc /examples3d/all_examples3.rs
parentdc63c28f56c989ec97cb416d186cf76a1e61c555 (diff)
downloadrapier-3379094f5af20187d7ee0d50717810956fa32254.tar.gz
rapier-3379094f5af20187d7ee0d50717810956fa32254.tar.bz2
rapier-3379094f5af20187d7ee0d50717810956fa32254.zip
Minor demos changes.
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),