feat: show keybinds on hud buttons (#66)

This commit is contained in:
demenik
2025-12-10 18:29:20 +01:00
parent 81ff75630e
commit ccf8209a7f

View File

@@ -59,13 +59,13 @@ fn setup(mut commands: Commands, game_config: Res<GameConfig>, 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)
)
],
));