mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 15:13:16 +00:00
make health settings always have the same size
This commit is contained in:
parent
4e0a17a9c1
commit
a534112520
1 changed files with 17 additions and 11 deletions
|
@ -598,6 +598,10 @@ impl App {
|
||||||
GameMode::LocalHealth,
|
GameMode::LocalHealth,
|
||||||
"Local health",
|
"Local health",
|
||||||
);
|
);
|
||||||
|
|
||||||
|
ui.scope(|ui| {
|
||||||
|
ui.set_height(60.0);
|
||||||
|
|
||||||
match game_settings.game_mode {
|
match game_settings.game_mode {
|
||||||
GameMode::SharedHealth => {
|
GameMode::SharedHealth => {
|
||||||
ui.label("Health is shared, but scales with player count.");
|
ui.label("Health is shared, but scales with player count.");
|
||||||
|
@ -609,6 +613,8 @@ impl App {
|
||||||
ui.label("There is a respawn mechanic.");
|
ui.label("There is a respawn mechanic.");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
ui.add_space(20.0);
|
ui.add_space(20.0);
|
||||||
ui.label(tr("connect_settings_debug"));
|
ui.label(tr("connect_settings_debug"));
|
||||||
ui.checkbox(
|
ui.checkbox(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue