This commit is contained in:
Anuken
2020-09-13 23:11:24 -04:00
parent bbb9b3ef62
commit 3f1ed6d4a4
@@ -723,14 +723,16 @@ public class HudFragment extends Fragment{
}, },
new Table(t -> { new Table(t -> {
float bw = 40f; float bw = 40f;
float pad = -30; float pad = -20;
t.margin(0); t.margin(0);
t.add(new SideBar(() -> player.unit().healthf(), () -> true, true)).width(bw).growY().padRight(pad); t.add(new SideBar(() -> player.unit().healthf(), () -> true, true)).width(bw).growY().padRight(pad);
t.image(() -> player.icon()).scaling(Scaling.bounded).grow(); t.image(() -> player.icon()).scaling(Scaling.bounded).grow().maxWidth(58f);
t.add(new SideBar(() -> player.dead() ? 0f : player.displayAmmo() ? player.unit().ammof() : player.unit().healthf(), () -> !player.displayAmmo(), false)).width(bw).growY().padLeft(pad).update(b -> { t.add(new SideBar(() -> player.dead() ? 0f : player.displayAmmo() ? player.unit().ammof() : player.unit().healthf(), () -> !player.displayAmmo(), false)).width(bw).growY().padLeft(pad).update(b -> {
b.color.set(player.displayAmmo() ? Pal.ammo : Pal.health); b.color.set(player.displayAmmo() ? Pal.ammo : Pal.health);
}); });
t.getChildren().get(1).toFront();
})).size(120f, 80).padRight(4); })).size(120f, 80).padRight(4);
table.labelWrap(() -> { table.labelWrap(() -> {