New icon / Windows deployment fixes / Map fixes / Menu fix
@@ -601,6 +601,8 @@ block.core-foundation.name = Core: Foundation
|
||||
block.core-nucleus.name = Core: Nucleus
|
||||
block.deepwater.name = Deep Water
|
||||
block.water.name = Water
|
||||
block.tainted-water.name = Tainted Water
|
||||
block.darksand-tainted-water.name = Dark Sand Tainted Water
|
||||
block.tar.name = Tar
|
||||
block.stone.name = Stone
|
||||
block.sand.name = Sand
|
||||
|
||||
|
Before Width: | Height: | Size: 506 B After Width: | Height: | Size: 509 B |
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 5.6 KiB |
|
After Width: | Height: | Size: 22 KiB |
|
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 727 KiB |
|
Before Width: | Height: | Size: 243 KiB After Width: | Height: | Size: 118 KiB |
|
Before Width: | Height: | Size: 228 KiB After Width: | Height: | Size: 148 KiB |
@@ -63,7 +63,7 @@ public class HudFragment extends Fragment{
|
||||
@Override
|
||||
public void act(float delta){
|
||||
setSize(getPrefWidth(), getPrefHeight());
|
||||
setPosition(0, 0, Align.topLeft);
|
||||
setPosition(0, Core.graphics.getHeight(), Align.topLeft);
|
||||
super.act(delta);
|
||||
}
|
||||
|
||||
@@ -78,6 +78,7 @@ public class HudFragment extends Fragment{
|
||||
}
|
||||
};
|
||||
|
||||
select.visible(() -> !state.is(State.menu));
|
||||
select.left();
|
||||
select.defaults().size(dsize).left();
|
||||
|
||||
@@ -120,7 +121,8 @@ public class HudFragment extends Fragment{
|
||||
}).get();
|
||||
|
||||
select.addImage("blank").color(Pal.accent).width(3f).fillY();
|
||||
cont.add(select).prefSize(dsize*4 + 3, dsize).left();
|
||||
Core.scene.add(select);
|
||||
cont.add().size(dsize*4 + 3, dsize).left();
|
||||
}
|
||||
|
||||
cont.row();
|
||||
|
||||