From c31ddd9bead789672d46d205894d75767f195fa8 Mon Sep 17 00:00:00 2001 From: Jarrod Doyle Date: Wed, 31 Jan 2024 16:42:28 +0000 Subject: [PATCH] Remove unused blue rect entity --- src/main.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/main.rs b/src/main.rs index 743ec89..03c8da7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -34,13 +34,4 @@ fn main() { fn setup(mut commands: Commands) { commands.spawn(Camera2dBundle::default()); - commands.spawn(SpriteBundle { - sprite: Sprite { - color: Color::rgb(0.25, 0.25, 0.75), - custom_size: Some(Vec2::new(50.0, 100.0)), - ..default() - }, - transform: Transform::from_translation(Vec3::new(-50., 0., 0.)), - ..default() - }); }