From 4eea99df7fd7256c4d99fd4eb920d01e7b0ce3a6 Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Tue, 9 May 2023 18:37:59 +0300 Subject: [PATCH] fix(client): delete test card --- client/src/plugins/game/mod.rs | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/client/src/plugins/game/mod.rs b/client/src/plugins/game/mod.rs index f446934..877a980 100644 --- a/client/src/plugins/game/mod.rs +++ b/client/src/plugins/game/mod.rs @@ -63,17 +63,4 @@ fn game_setup( commands .spawn(Collider::cuboid(20., 0.5, 20.)) .insert(TransformBundle::from(Transform::from_xyz(0., -0.5, 0.))); - - commands.spawn(VisualCardBundle { - transform: Transform { - translation: Vec3 { - x: 0., - y: 3., - z: 0., - }, - rotation: Quat::from_euler(EulerRot::XYZ, -90., 0., 0.), - ..Default::default() - }, - ..Default::default() - }); } -- 2.44.1