From 315493ebfb06af9924fdabb8f26da4d1a9b095bc Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Fri, 22 Jan 2021 13:38:59 +0100 Subject: IntegrationParameters: deprectate dt() and inv_dt() methods --- src_testbed/box2d_backend.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src_testbed/box2d_backend.rs') diff --git a/src_testbed/box2d_backend.rs b/src_testbed/box2d_backend.rs index f448a6f..941c6d5 100644 --- a/src_testbed/box2d_backend.rs +++ b/src_testbed/box2d_backend.rs @@ -211,7 +211,7 @@ impl Box2dWorld { counters.step_started(); self.world.step( - params.dt(), + params.dt, params.max_velocity_iterations as i32, params.max_position_iterations as i32, ); -- cgit