Center the text, add a drop shadow

This commit is contained in:
2025-08-13 16:03:40 -05:00
parent 4102446e90
commit 0aefc96f7a

View File

@@ -100,6 +100,10 @@ fn spawn_menu(mut commands: Commands) {
.spawn(( .spawn((
MarkerMainMenu, MarkerMainMenu,
Node { Node {
width: Val::Percent(100.0),
height: Val::Percent(100.0),
align_items: AlignItems::Center,
justify_content: JustifyContent::Center,
flex_direction: FlexDirection::Column, flex_direction: FlexDirection::Column,
..Default::default() ..Default::default()
}, },
@@ -108,10 +112,14 @@ fn spawn_menu(mut commands: Commands) {
cmds.spawn(( cmds.spawn((
Text::new("Robert's Bad Asteroids Game"), Text::new("Robert's Bad Asteroids Game"),
TextFont::from_font_size(50.0), TextFont::from_font_size(50.0),
TextLayout::new_with_justify(JustifyText::Center),
TextShadow::default(),
)); ));
cmds.spawn(( cmds.spawn((
Text::new("Press space to begin"), Text::new("Press space to begin"),
TextFont::from_font_size(40.0), TextFont::from_font_size(20.0),
TextColor(Color::srgb(0.7, 0.7, 0.7)),
TextShadow::default(),
)); ));
}); });
} }