mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03: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,17 +598,23 @@ impl App {
|
|||
GameMode::LocalHealth,
|
||||
"Local health",
|
||||
);
|
||||
match game_settings.game_mode {
|
||||
GameMode::SharedHealth => {
|
||||
ui.label("Health is shared, but scales with player count.");
|
||||
ui.label("Percentage-based damage and full heals are adjusted.");
|
||||
ui.label("The original mode.");
|
||||
}
|
||||
GameMode::LocalHealth => {
|
||||
ui.label("Every player has their own health, run ends when all player are dead.");
|
||||
ui.label("There is a respawn mechanic.");
|
||||
}
|
||||
}
|
||||
|
||||
ui.scope(|ui| {
|
||||
ui.set_height(60.0);
|
||||
|
||||
match game_settings.game_mode {
|
||||
GameMode::SharedHealth => {
|
||||
ui.label("Health is shared, but scales with player count.");
|
||||
ui.label("Percentage-based damage and full heals are adjusted.");
|
||||
ui.label("The original mode.");
|
||||
}
|
||||
GameMode::LocalHealth => {
|
||||
ui.label("Every player has their own health, run ends when all player are dead.");
|
||||
ui.label("There is a respawn mechanic.");
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
ui.add_space(20.0);
|
||||
ui.label(tr("connect_settings_debug"));
|
||||
ui.checkbox(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue