changeset 85:e9fab3c96043

Make piece rotation animation a bit faster.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 03 Mar 2011 15:53:46 +0200
parents bef7b101055c
children 454a9fcd13ca
files game/Piece.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/game/Piece.java	Thu Mar 03 15:53:32 2011 +0200
+++ b/game/Piece.java	Thu Mar 03 15:53:46 2011 +0200
@@ -15,7 +15,7 @@
     public enum RotateDir { LEFT, RIGHT }
     
     static final int numConnections = 8;
-    static final float maxTime = 50.0f;
+    static final float maxTime = 35.0f;
 
     int currRotation;
     int[] connections;