diff --git a/src/features/hud/mod.rs b/src/features/hud/mod.rs index 3d50a06..f736d89 100644 --- a/src/features/hud/mod.rs +++ b/src/features/hud/mod.rs @@ -59,13 +59,13 @@ fn setup(mut commands: Commands, game_config: Res, asset_server: Res inventory::components::ButtonType::InventoryOpen, ButtonVariant::Secondary, Node::from_padding(UiRect::all(px(10))), - |color| text("Inventar", 16.0, color) + |color| text("Inventar [I]", 16.0, color) ), button( ButtonType::SettingsOpen, ButtonVariant::Secondary, Node::from_padding(UiRect::all(px(10))), - |color| text("Einstellungen", 16.0, color) + |color| text("Einstellungen [Esc]", 16.0, color) ) ], ));