mo' fling

This commit is contained in:
Hannes Janetzek 2014-06-04 06:17:51 +02:00
parent 3f49361e4a
commit a2abbe5197

View File

@ -409,10 +409,10 @@ public class MapEventLayer extends Layer implements InputListener, GestureListen
private boolean doFling(float velocityX, float velocityY) { private boolean doFling(float velocityX, float velocityY) {
int w = Tile.SIZE * 3; int w = Tile.SIZE * 5;
int h = Tile.SIZE * 3; int h = Tile.SIZE * 5;
mMap.animator().animateFling(velocityX, velocityY, mMap.animator().animateFling(velocityX * 2, velocityY * 2,
-w, w, -h, h); -w, w, -h, h);
return true; return true;
} }