Added map assets

This commit is contained in:
Anuken 2019-06-02 23:15:36 -04:00
parent fb863cb39b
commit b73420b156
7 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

BIN
core/assets/maps/maze.msav Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -296,7 +296,7 @@ public class NetServer implements ApplicationListener{
}
vector.set(x - player.getInterpolator().target.x, y - player.getInterpolator().target.y);
vector.limit(maxMove);
//vector.limit(maxMove);
float prevx = player.x, prevy = player.y;
player.set(player.getInterpolator().target.x, player.getInterpolator().target.y);

View File

@ -18,7 +18,7 @@ import static io.anuke.mindustry.Vars.*;
public class Maps implements Disposable{
/** List of all built-in maps. Filenames only. */
private static final String[] defaultMapNames = {"fortress"};
private static final String[] defaultMapNames = {"fortress", "shoreline", "labyrinth"};
/** All maps stored in an ordered array. */
private Array<Map> maps = new Array<>();
/** Serializer for meta. */