From 6beae11e03d63c3a07d8819e856d12d68c13e9da Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 29 Dec 2016 03:52:55 -0500 Subject: [PATCH] v0.5.0: adjusted character shadows slightly --- .../shatteredpixeldungeon/sprites/CharSprite.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java index e44c87f9a..44979e943 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java @@ -460,8 +460,8 @@ public class CharSprite extends MovieClip implements Tweener.Listener, MovieClip protected void updateMatrix() { super.updateMatrix(); shadowMatrix = Matrix.clone(matrix); - Matrix.translate(shadowMatrix, -width()/13.333f, height()*0.825f); - Matrix.scale(shadowMatrix, 1.15f, 0.2f); + Matrix.translate(shadowMatrix, -width()/13.333f, height()*0.7625f); + Matrix.scale(shadowMatrix, 1.15f, 0.25f); } @Override