X-Git-Url: https://deadsoftware.ru/gitweb?p=cavedroid.git;a=blobdiff_plain;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fobjects%2FPlayer.java;h=1dc516bdd9e761b57124c18d6777df4364d7418d;hp=56aa9c1e4d098aef7d371f1be9083a9602b58484;hb=503cd1720db3f53b7cbf7e3819968044de29a465;hpb=50082e8304a80c41dd8b1c1d80142e7c91a2d924 diff --git a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java index 56aa9c1..1dc516b 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java +++ b/core/src/ru/deadsoftware/cavecraft/game/objects/Player.java @@ -2,12 +2,13 @@ package ru.deadsoftware.cavecraft.game.objects; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; +import ru.deadsoftware.cavecraft.Assets; public class Player { public Vector2 position; public Vector2 moveX, moveY; - public int width, height, dir; + public int width, height, dir, texWidth; public boolean canJump; public int[] inventory; public boolean flyMode = false; @@ -18,6 +19,7 @@ public class Player { moveY = new Vector2(0, 0); width = 4; height = 30; + texWidth = 8; inventory = new int[9]; inventory[0] = 1; inventory[1] = 2;