IntegrationParameters: deprectate dt() and inv_dt() methods

This commit is contained in:
Emil Ernerfeldt
2021-01-22 13:38:59 +01:00
parent 581d13edbd
commit 315493ebfb
8 changed files with 10 additions and 9 deletions

View File

@@ -396,7 +396,7 @@ impl PhysxWorld {
pub fn step(&mut self, counters: &mut Counters, params: &IntegrationParameters) {
counters.step_started();
self.scene.step(params.dt(), true);
self.scene.step(params.dt, true);
counters.step_completed();
}