From 28cc19d104d986db54d8725e68189070bef31a8a Mon Sep 17 00:00:00 2001 From: Sébastien Crozet Date: Sun, 20 Feb 2022 14:21:59 +0100 Subject: Allow removing a rigid-body without auto-removing attached colliders --- examples3d/fountain3.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'examples3d') diff --git a/examples3d/fountain3.rs b/examples3d/fountain3.rs index 31ff15b..bb7199f 100644 --- a/examples3d/fountain3.rs +++ b/examples3d/fountain3.rs @@ -63,6 +63,7 @@ pub fn init_world(testbed: &mut Testbed) { &mut physics.colliders, &mut physics.impulse_joints, &mut physics.multibody_joints, + true, ); if let Some(graphics) = &mut graphics { -- cgit