From 41de5a6147c2c2dddd0dd701266a4b4f4cf26e94 Mon Sep 17 00:00:00 2001 From: Armin Benz Date: Thu, 4 May 2017 21:22:26 +0200 Subject: [PATCH] =?UTF-8?q?Epsilon=20ist=20jetzt=20nur=20noch=20=C2=B3=20u?= =?UTF-8?q?nd=20die=20Collision=20motzt=20nicht=20rum.=20Falls=20Mike=20ei?= =?UTF-8?q?ne=20sch=C3=B6nere=20L=C3=B6sung=20hat,=20darf=20er=20gern=20ra?= =?UTF-8?q?n.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../samdev/colorrunner/game/world/entities/MovingEntity.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/de/samdev/colorrunner/game/world/entities/MovingEntity.java b/core/src/de/samdev/colorrunner/game/world/entities/MovingEntity.java index 8e6a924..b0aca37 100644 --- a/core/src/de/samdev/colorrunner/game/world/entities/MovingEntity.java +++ b/core/src/de/samdev/colorrunner/game/world/entities/MovingEntity.java @@ -10,8 +10,8 @@ import de.samdev.colorrunner.game.world.CRGameWorld; public abstract class MovingEntity extends CRGameEntity { public Vector2 velocity = new Vector2(); - public final static float EPSILON = 1e-4f; - public final static float EPSILON_TOUCH = 5e-4f; + public final static float EPSILON = 1e-3f; + public final static float EPSILON_TOUCH = 5e-3f; private boolean face_TOP_isTouching = false; private boolean face_LEFT_isTouching = false;