X-Git-Url: https://deadsoftware.ru/gitweb?a=blobdiff_plain;ds=inline;f=core%2Fsrc%2Fru%2Fdeadsoftware%2Fcavecraft%2Fgame%2Fmobs%2FFallingSand.java;h=b9108845122a13791d098539cf1d1b7f6dfe52ea;hb=d7f5950fc751cec8fa64005dd1886cac4081ee99;hp=a410eb3541a2cfc36d8108a3d6257d03865245c5;hpb=84b8cd80e39699174969bfed0734e78b8ec09615;p=cavedroid.git diff --git a/core/src/ru/deadsoftware/cavecraft/game/mobs/FallingSand.java b/core/src/ru/deadsoftware/cavecraft/game/mobs/FallingSand.java index a410eb3..b910884 100644 --- a/core/src/ru/deadsoftware/cavecraft/game/mobs/FallingSand.java +++ b/core/src/ru/deadsoftware/cavecraft/game/mobs/FallingSand.java @@ -3,14 +3,14 @@ package ru.deadsoftware.cavecraft.game.mobs; import com.badlogic.gdx.graphics.g2d.SpriteBatch; import com.badlogic.gdx.math.Rectangle; import com.badlogic.gdx.math.Vector2; -import ru.deadsoftware.cavecraft.game.Items; +import ru.deadsoftware.cavecraft.game.GameItems; import ru.deadsoftware.cavecraft.misc.Assets; public class FallingSand extends Mob { public FallingSand(int x, int y) { dir = 0; - position = new Vector2(x, y); + pos = new Vector2(x, y); move = new Vector2(0, 1); width = 16; height = 16; @@ -28,12 +28,12 @@ public class FallingSand extends Mob { @Override public void draw(SpriteBatch spriteBatch, float x, float y) { - spriteBatch.draw(Assets.blockTextures[Items.BLOCKS.get("sand").getTexture()], x, y); + spriteBatch.draw(Assets.blockTex[GameItems.getBlock(10).getTex()], x, y); } @Override public Rectangle getRect() { - return new Rectangle(position.x, position.y, width, height); + return new Rectangle(pos.x, pos.y, width, height); } @Override