This commit is contained in:
Anuken
2020-05-10 13:34:52 -04:00
parent dabc891791
commit 2cb9cfb097
17 changed files with 65 additions and 58 deletions
@@ -27,7 +27,7 @@ public class LoadRenderer implements Disposable{
private static final String red = "[#" + colorRed + "]";
private static final String orange = "[#" + color + "]";
private static final FloatArray floats = new FloatArray();
private static final boolean preview = true;
private static final boolean preview = false;
private float testprogress = 0f;
private StringBuilder assetText = new StringBuilder();
@@ -137,6 +137,7 @@ public class LoadRenderer implements Disposable{
}
}
Draw.flush();
float aspect = 1.94f;
@@ -228,10 +229,13 @@ public class LoadRenderer implements Disposable{
}else if(panei == 1){
float height = maxy - miny;
float barpad = s * 8f;
float barspace = (height - barpad) / bars.length;
int barsUsed = Math.min((int)((height - barpad) / (font.getLineHeight() * 1.4f)), bars.length);
float barspace = (height - barpad) / barsUsed;
float barheight = barspace * 0.8f;
for(int i = 0; i < bars.length; i++){
for(int i = 0; i < barsUsed; i++){
Bar bar = bars[i];
if(bar.valid()){
Draw.color(bar.red() ? colorRed : color);