Drill output/speed display

This commit is contained in:
Anuken
2019-08-01 13:32:38 -04:00
parent 01efb59d25
commit 26d26b5e7a
5 changed files with 50 additions and 23 deletions

View File

@@ -43,6 +43,7 @@ public class LoadingFragment extends Fragment{
}
public void show(String text){
table.touchable(Touchable.enabled);
table.<Label>find("namelabel").setText(text);
table.visible(true);
table.getColor().a = 1f;
@@ -51,6 +52,7 @@ public class LoadingFragment extends Fragment{
public void hide(){
table.toFront();
table.touchable(Touchable.disabled);
table.actions(Actions.fadeOut(1f), Actions.visible(false));
}
}