Better exception output

This commit is contained in:
Anuken
2020-05-07 14:33:01 -04:00
parent 047652154e
commit d51a8611c3
2 changed files with 1 additions and 4 deletions

View File

@ -287,6 +287,7 @@ project(":tests"){
test{
useJUnitPlatform()
workingDir = new File("../core/assets")
exceptionFormat = 'full'
}
}

View File

@ -30,8 +30,6 @@ public class LoadRenderer implements Disposable{
private static final boolean preview = true;
private float testprogress = 0f;
private float smoothProgress;
private StringBuilder assetText = new StringBuilder();
private Bar[] bars;
private Mesh mesh = MeshBuilder.buildHex(colorRed, 2, true, 1f);
@ -95,8 +93,6 @@ public class LoadRenderer implements Disposable{
lastLength = assets.getLoadedAssets();
}
smoothProgress = Mathf.lerpDelta(smoothProgress, assets.getProgress(), 0.1f);
Core.graphics.clear(Color.black);
float w = Core.graphics.getWidth(), h = Core.graphics.getHeight(), s = Scl.scl();