From 65edd4463942d1d053336fa95e665e1327ca99c5 Mon Sep 17 00:00:00 2001 From: Thierry Berger Date: Thu, 5 Dec 2024 11:06:47 +0100 Subject: [PATCH] fix new sync removal test --- 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 7ac67f78..5f52b678 100644 --- a/src/plugin/plugin.rs +++ b/src/plugin/plugin.rs @@ -567,7 +567,7 @@ mod test { pub fn setup_physics(mut commands: Commands) { commands.spawn(( - TransformBundle::from(Transform::from_xyz(0.0, 13.0, 0.0)), + Transform::from_xyz(0.0, 13.0, 0.0), RigidBody::Dynamic, cuboid(0.5, 0.5, 0.5), TestMarker,