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;