From 3cb7b9ff966b6477792ac8c055177f17e73c13eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Crozet?= Date: Sun, 6 Aug 2023 13:56:42 +0200 Subject: [PATCH] Rename RapierPhysicsPlugin::fixed to ::in_fixed_schedule --- src/plugin/plugin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugin/plugin.rs b/src/plugin/plugin.rs index f470e361..9726dc6b 100644 --- a/src/plugin/plugin.rs +++ b/src/plugin/plugin.rs @@ -62,7 +62,7 @@ where } /// Adds the physics systems to the `FixedUpdate` schedule rather than `PostUpdate`. - pub fn fixed(self) -> Self { + pub fn in_fixed_schedule(self) -> Self { self.in_schedule(FixedUpdate) }