Playtesting begins: balancing fixes

This commit is contained in:
Anuken
2018-06-21 14:07:20 -04:00
parent 13bb78ffa0
commit a76e99af86
8 changed files with 82 additions and 20 deletions

View File

@@ -252,7 +252,7 @@ public class BlocksFragment implements Fragment{
}
selectTable.row();
selectTable.add(stack).colspan(Category.values().length).padBottom(-5).height((size + 12)*maxrow);
selectTable.add(stack).growX().left().top().colspan(Category.values().length).padBottom(-5).height((size + 12)*maxrow);
}
void toggle(boolean show, float t, Interpolation ip){

View File

@@ -211,6 +211,13 @@ public class HudFragment implements Fragment{
//if there's currently no unlock notification...
if(lastUnlockTable == null) {
Table table = new Table("button");
table.update(() -> {
if(state.is(State.menu)){
table.remove();
lastUnlockLayout = null;
lastUnlockTable = null;
}
});
table.margin(12);
Table in = new Table();