diff --git a/core/assets-raw/sprites/blocks/environment/icerocks1.png b/core/assets-raw/sprites/blocks/environment/icerocks1.png index 8e11fd1ddf..c690d8d2f8 100644 Binary files a/core/assets-raw/sprites/blocks/environment/icerocks1.png and b/core/assets-raw/sprites/blocks/environment/icerocks1.png differ diff --git a/core/assets-raw/sprites/blocks/environment/shalerocks1.png b/core/assets-raw/sprites/blocks/environment/shalerocks1.png index 79fc0656ed..ff8b482bb7 100644 Binary files a/core/assets-raw/sprites/blocks/environment/shalerocks1.png and b/core/assets-raw/sprites/blocks/environment/shalerocks1.png differ diff --git a/core/assets-raw/sprites/blocks/environment/shalerocks2.png b/core/assets-raw/sprites/blocks/environment/shalerocks2.png index 7f844dba81..50d0f74c0c 100644 Binary files a/core/assets-raw/sprites/blocks/environment/shalerocks2.png and b/core/assets-raw/sprites/blocks/environment/shalerocks2.png differ diff --git a/core/src/io/anuke/mindustry/graphics/MenuRenderer.java b/core/src/io/anuke/mindustry/graphics/MenuRenderer.java index c64564b988..ac901d9265 100644 --- a/core/src/io/anuke/mindustry/graphics/MenuRenderer.java +++ b/core/src/io/anuke/mindustry/graphics/MenuRenderer.java @@ -22,8 +22,8 @@ import io.anuke.mindustry.world.blocks.OreBlock; import static io.anuke.mindustry.Vars.*; public class MenuRenderer implements Disposable{ - private static final int width = 100, height = 50; private static final float darkness = 0.3f; + private final int width = !mobile ? 90 : 60, height = !mobile ? 40 : 50; private int cacheFloor, cacheWall; private Camera camera = new Camera(); @@ -52,16 +52,20 @@ public class MenuRenderer implements Disposable{ Simplex s3 = new Simplex(offset + 2); RidgedPerlin rid = new RidgedPerlin(1 + offset, 1); Block[] selected = Structs.select( - new Block[]{Blocks.moss, Blocks.sporePine}, new Block[]{Blocks.sand, Blocks.sandRocks}, new Block[]{Blocks.shale, Blocks.shaleRocks}, - new Block[]{Blocks.ice, Blocks.icerocks} + new Block[]{Blocks.ice, Blocks.icerocks}, + new Block[]{Blocks.sand, Blocks.sandRocks}, + new Block[]{Blocks.shale, Blocks.shaleRocks}, + new Block[]{Blocks.ice, Blocks.icerocks}, + new Block[]{Blocks.moss, Blocks.sporePine} ); Block[] selected2 = Structs.select( - new Block[]{Blocks.moss, Blocks.sporerocks}, + new Block[]{Blocks.ignarock, Blocks.duneRocks}, new Block[]{Blocks.ignarock, Blocks.duneRocks}, new Block[]{Blocks.stone, Blocks.rocks}, new Block[]{Blocks.stone, Blocks.rocks}, + new Block[]{Blocks.moss, Blocks.sporerocks}, new Block[]{Blocks.salt, Blocks.saltRocks} ); @@ -280,7 +284,7 @@ public class MenuRenderer implements Disposable{ float tw = width * tilesize * 2; float th = height * tilesize * 2; float range = 500f; - float offset = -00f; + float offset = -600f; for(int i = 0; i < flyers; i++){ Tmp.v1.trns(flyerRot, time * (2.5f + flyerType.speed));