Spore storms / Weather attribute effects

This commit is contained in:
Anuken
2020-07-28 17:13:21 -04:00
parent 7cc94057a1
commit 3251dde4a8
15 changed files with 177 additions and 21 deletions

View File

@@ -139,7 +139,7 @@ public class WaveGraph extends Table{
for(Mode m : Mode.all){
t.button("$wavemode." + m.name(), Styles.fullTogglet, () -> {
mode = m;
}).group(group).height(32f).update(b -> b.setChecked(m == mode)).width(100f);
}).group(group).height(32f).update(b -> b.setChecked(m == mode)).width(130f);
}
}).growX();
}
@@ -201,6 +201,7 @@ public class WaveGraph extends Table{
enum Mode{
counts, totals, health;
static Mode[] all = values();
}
}