fix schem quickslot

This commit is contained in:
sharlottes
2022-04-09 00:48:59 +09:00
parent 697c06f3be
commit 5d02dd1a9a
2 changed files with 7 additions and 4 deletions

View File

@@ -88,7 +88,10 @@ public class HudUi {
locked = false;
}
heat+=Time.delta;
if(heat>60) schemTable.setSchemTable();
if(heat>60) {
heat=0;
schemTable.setSchemTable();
}
if(Scl.scl(modUiScale) != settings.getInt("infoUiScale") / 100f){
modUiScale = settings.getInt("infoUiScale") / 100f;
@@ -224,7 +227,8 @@ public class HudUi {
public void addSchemTable() {
Table table = (Table) scene.find("minimap/position");
table.row();
table.add(schemTable=new SchemDisplay());
schemTable=new SchemDisplay();
table.add(schemTable);
}
public void addWaveInfoTable() {