From dc4bd24da869cfa8143c3ee9a98cdec662db289e Mon Sep 17 00:00:00 2001 From: Thierry Berger Date: Wed, 8 Jan 2025 17:16:34 +0100 Subject: Update to Parry 0.18 (#770) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * update to parry ~main * use traverse_depth_first * add example to test intersection * rely on upstream PR rather than local * re-enable profiler_ui for examples * rely on official parry repository * chore: switch back to the published version of parry * chore: update changelog * chore: remove dead code * fix compilation of rapier3d-meshloader and rapier3d-urdf * chore: cargo fmt --------- Co-authored-by: Sébastien Crozet --- src_testbed/testbed.rs | 2 +- src_testbed/ui.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src_testbed') diff --git a/src_testbed/testbed.rs b/src_testbed/testbed.rs index c4fa688..8390f29 100644 --- a/src_testbed/testbed.rs +++ b/src_testbed/testbed.rs @@ -249,7 +249,7 @@ impl TestbedApp { } pub fn run_with_init(mut self, mut init: impl FnMut(&mut App)) { - #[cfg(feature = "profiling")] + #[cfg(feature = "profiler_ui")] puffin_egui::puffin::set_scopes_on(true); let mut args = env::args(); diff --git a/src_testbed/ui.rs b/src_testbed/ui.rs index 1c0421a..39ac93a 100644 --- a/src_testbed/ui.rs +++ b/src_testbed/ui.rs @@ -22,7 +22,7 @@ pub fn update_ui( harness: &mut Harness, debug_render: &mut DebugRenderPipelineResource, ) { - #[cfg(feature = "profiling")] + #[cfg(feature = "profiler_ui")] { let window = egui::Window::new("Profiling"); let window = window.default_open(false); -- cgit