summaryrefslogtreecommitdiff
path: root/core/src/main/java/coffee/liz/dyl/config/PhysicsConstants.java
blob: d10c781c909fb7653618c178138918ac298cc5f5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package coffee.liz.dyl.config;

public final class PhysicsConstants {
    public static final float GRAVITY = 52f;
    public static final float ADDITIONAL_JUMP_OVER_GRAVITY = 1.30f;
    public static final float MOVE_SPEED = 9.5f;
    public static final float JUMP_IMPULSE_VEL = 10.0f;
    public static final float JUMP_SUSTAIN_FORCE = 22;
    public static final float MAX_JUMP_SECONDS = 0.22f;
    public static final float JUMP_BUFFER_SECONDS = 0.15f;
    public static final float COYOTE_TIME_SECONDS = 0.08f;
    public static final float DAMAGE_TIME = 0.25f;

    private PhysicsConstants() { }
}