From 76f0b208d98bdb24695f0ca1ffe9221dde9d7e5b Mon Sep 17 00:00:00 2001 From: NathanSweet Date: Mon, 9 Oct 2017 11:52:01 +0200 Subject: [PATCH] Changed SV bg color to match editor default bg color (when gradient is off and square alpha is 0). --- .../src/com/esotericsoftware/spine/SkeletonViewer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-libgdx/spine-skeletonviewer/src/com/esotericsoftware/spine/SkeletonViewer.java b/spine-libgdx/spine-skeletonviewer/src/com/esotericsoftware/spine/SkeletonViewer.java index bcb2bc168..302d269a7 100644 --- a/spine-libgdx/spine-skeletonviewer/src/com/esotericsoftware/spine/SkeletonViewer.java +++ b/spine-libgdx/spine-skeletonviewer/src/com/esotericsoftware/spine/SkeletonViewer.java @@ -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();