Changed SV bg color to match editor default bg color (when gradient is off and square alpha is 0).

This commit is contained in:
NathanSweet 2017-10-09 11:52:01 +02:00
parent f06bfd9f16
commit 76f0b208d9

View File

@ -253,7 +253,7 @@ public class SkeletonViewer extends ApplicationAdapter {
}
public void render () {
Gdx.gl.glClearColor(0.3f, 0.3f, 0.3f, 1);
Gdx.gl.glClearColor(112 / 255f, 111 / 255f, 118 / 255f, 1);
Gdx.gl.glClear(GL20.GL_COLOR_BUFFER_BIT);
float delta = Gdx.graphics.getDeltaTime();