From 746de2bd80dac72bb7d95706d308b70c39ac8bee Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Fri, 15 Aug 2025 15:26:11 -0500 Subject: [PATCH] Add "Game Over" text to the game over screen --- src/widgets.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/widgets.rs b/src/widgets.rs index b4b988b..0087967 100644 --- a/src/widgets.rs +++ b/src/widgets.rs @@ -216,6 +216,11 @@ fn spawn_gameover_ui(mut commands: Commands) { ..default() }, children![ + ( + Text::new("Game Over"), + TextFont::from_font_size(35.0), + TextShadow::default(), + ), (button_bundle("Main Menu"), ButtonMenuAction::ToMainMenu,), (button_bundle("Quit"), ButtonMenuAction::Quit), ],