Better exception output
This commit is contained in:
@@ -287,6 +287,7 @@ project(":tests"){
|
|||||||
test{
|
test{
|
||||||
useJUnitPlatform()
|
useJUnitPlatform()
|
||||||
workingDir = new File("../core/assets")
|
workingDir = new File("../core/assets")
|
||||||
|
exceptionFormat = 'full'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -30,8 +30,6 @@ public class LoadRenderer implements Disposable{
|
|||||||
private static final boolean preview = true;
|
private static final boolean preview = true;
|
||||||
|
|
||||||
private float testprogress = 0f;
|
private float testprogress = 0f;
|
||||||
private float smoothProgress;
|
|
||||||
|
|
||||||
private StringBuilder assetText = new StringBuilder();
|
private StringBuilder assetText = new StringBuilder();
|
||||||
private Bar[] bars;
|
private Bar[] bars;
|
||||||
private Mesh mesh = MeshBuilder.buildHex(colorRed, 2, true, 1f);
|
private Mesh mesh = MeshBuilder.buildHex(colorRed, 2, true, 1f);
|
||||||
@@ -95,8 +93,6 @@ public class LoadRenderer implements Disposable{
|
|||||||
lastLength = assets.getLoadedAssets();
|
lastLength = assets.getLoadedAssets();
|
||||||
}
|
}
|
||||||
|
|
||||||
smoothProgress = Mathf.lerpDelta(smoothProgress, assets.getProgress(), 0.1f);
|
|
||||||
|
|
||||||
Core.graphics.clear(Color.black);
|
Core.graphics.clear(Color.black);
|
||||||
|
|
||||||
float w = Core.graphics.getWidth(), h = Core.graphics.getHeight(), s = Scl.scl();
|
float w = Core.graphics.getWidth(), h = Core.graphics.getHeight(), s = Scl.scl();
|
||||||
|
|||||||
Reference in New Issue
Block a user