mo' fling

This commit is contained in:
Hannes Janetzek
2014-06-10 22:38:52 +02:00
parent 3f49361e4a
commit a2abbe5197
+3 -3
View File
@@ -409,10 +409,10 @@ public class MapEventLayer extends Layer implements InputListener, GestureListen
private boolean doFling(float velocityX, float velocityY) {
int w = Tile.SIZE * 3;
int h = Tile.SIZE * 3;
int w = Tile.SIZE * 5;
int h = Tile.SIZE * 5;
mMap.animator().animateFling(velocityX, velocityY,
mMap.animator().animateFling(velocityX * 2, velocityY * 2,
-w, w, -h, h);
return true;
}