Increase acceleration a bit

This commit is contained in:
David96 2020-12-31 12:33:26 +01:00
parent 7ae37becba
commit e33ac1f839

View File

@ -6,7 +6,7 @@ class Welt implements Drawable
private static final int DISTANCE = 250;
private final ArrayList<Rectangle> _obstacles;
private double _speed = 150;
private double _acc = 0.5;
private double _acc = 2;
private final Random _random;
public Welt(Manager manager)