From cbe6baced5c36c39a0bd3cb8977c6097249ec5cb Mon Sep 17 00:00:00 2001 From: rezural Date: Thu, 24 Dec 2020 19:15:34 +1100 Subject: remove fixme comments --- src_testbed/testbed.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src_testbed/testbed.rs b/src_testbed/testbed.rs index 6ae1351..20a9e0a 100644 --- a/src_testbed/testbed.rs +++ b/src_testbed/testbed.rs @@ -396,6 +396,7 @@ impl Testbed { } fn clear(&mut self, window: &mut Window) { + //FIXME: do we need to do this still, after moving to harness code? self.callbacks.clear(); // self.persistant_contacts.clear(); // self.state.grabbed_object = None; @@ -1236,7 +1237,6 @@ impl State for Testbed { if self.state.selected_backend == RAPIER_BACKEND { self.harness.step(); - //FIXME: this should probably be delegated to harness plugins for plugin in &mut self.plugins { plugin.step(&mut self.harness.physics) } @@ -1287,7 +1287,6 @@ impl State for Testbed { } } - // FIXME: should this be handled by harness plugins? for plugin in &mut self.plugins { { plugin.run_callbacks(window, &mut self.harness.physics, self.harness.state.time); -- cgit