Tutorial sector prototype / New mission display

This commit is contained in:
Anuken
2018-09-21 23:14:26 -04:00
parent d067bbfa65
commit a1a6a3ab81
14 changed files with 104 additions and 36 deletions
@@ -42,9 +42,7 @@ public class EventType{
}
/**
* Called from the logic thread. Do not access graphics here!
*/
/**Called from the logic thread. Do not access graphics here!*/
public static class TileChangeEvent implements Event{
public final Tile tile;
@@ -22,6 +22,7 @@ public enum GameMode{
hidden = true;
enemyCheat = false;
showPads = true;
showMission = false;
}},
pvp{{
showPads = true;
@@ -32,7 +33,7 @@ public enum GameMode{
respawnTime = 60 * 10;
}};
public boolean infiniteResources, disableWaveTimer, disableWaves, hidden, enemyCheat, isPvp, showPads;
public boolean infiniteResources, disableWaveTimer, disableWaves, showMission = true, hidden, enemyCheat, isPvp, showPads;
public float enemyCoreBuildRadius = 400f;
public float respawnTime = 60 * 4;