From 3474ec95ccd90fc098f84a255446b2a64536ce8a Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 16 Dec 2018 16:20:34 -0500 Subject: [PATCH] v0.7.1: adjusted the size and transparency of the turn counter --- .../shatteredpixeldungeon/scenes/GameScene.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java index 83d59dcb6..bdf79a788 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/GameScene.java @@ -336,8 +336,8 @@ public class GameScene extends PixelScene { busy.y = pane.bottom() + 1; add( busy ); - counter = new CircleArc(18, 4); - counter.color( 0xCCCCCC, true ); + counter = new CircleArc(18, 4.25f); + counter.color( 0x999999, true ); counter.camera = uiCamera; counter.show(this, busy.center(), 0f);