Skip to content

Commit

Permalink
Lower gravity a tad.
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeto committed Feb 2, 2012
1 parent b920589 commit 8ee0033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liquid/Launcher.java
Expand Up @@ -30,7 +30,7 @@ public class Launcher {
private static final float WIDTH = 50f;
private static final float HEIGHT = 70f;
private static final float THICKNESS = 1f;
private static final Vec2 GRAVITY = new Vec2(0, -25f);
private static final Vec2 GRAVITY = new Vec2(0, -20f);
private static final Rectangle2D VIEW =
new Rectangle2D.Float(WIDTH / -2, HEIGHT / -2, WIDTH, HEIGHT);
private static final long FLIP_RATE = 5000L;
Expand Down

0 comments on commit 8ee0033

Please sign in to comment.