X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=4a6c4d41682c36eca08ea7c288d3938df9f66acb;hb=84b8cd80e39699174969bfed0734e78b8ec09615;hp=2d5ffe8859340f30e92eaae6fb6a7191bdb83272;hpb=1cc111dfe31e7f7098e01afeaa025e19f91aa624;p=cavedroid.git diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index 2d5ffe8..4a6c4d4 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -10,7 +10,7 @@ public class Player implements Serializable { public static int ANIM_SPEED = 6; public Vector2 position; - public Vector2 moveX, moveY; + public Vector2 move; public int width, height, dir, texWidth; public boolean canJump; public int[] inventory; @@ -18,8 +18,7 @@ public class Player implements Serializable { public Player(Vector2 spawnPoint) { position = spawnPoint.cpy(); - moveX = new Vector2(0, 0); - moveY = new Vector2(0, 0); + move = new Vector2(0, 0); width = 4; height = 30; texWidth = 8; @@ -27,7 +26,7 @@ public class Player implements Serializable { } public Rectangle getRect() { - return new Rectangle(position.x+2, position.y, width, height); + return new Rectangle(position.x + 2, position.y, width, height); } }