DEADSOFTWARE

Add player animation and fly mode
[cavedroid.git] / core / src / ru / deadsoftware / cavecraft / game / objects / Player.java
index 2953d940989febecabc83467aff77e0de7c98623..56aa9c1e4d098aef7d371f1be9083a9602b58484 100644 (file)
@@ -10,12 +10,13 @@ public class Player {
     public int width, height, dir;
     public boolean canJump;
     public int[] inventory;
+    public boolean flyMode = false;
 
     public Player() {
         position = new Vector2(0, 0);
         moveX = new Vector2(0, 0);
         moveY = new Vector2(0, 0);
-        width = 8;
+        width = 4;
         height = 30;
         inventory = new int[9];
         inventory[0] = 1;
@@ -24,7 +25,7 @@ public class Player {
     }
 
     public Rectangle getRect() {
-        return new Rectangle(position.x, position.y, width, height);
+        return new Rectangle(position.x+2, position.y, width, height);
     }
 
 }