Ejemplo n.º 1
0
 public MapSettings(MapSettings other)
 {
     lemmingsCount       = other.lemmingsCount;
     minimumVictoryCount = other.minimumVictoryCount;
     skillsCounter       = new SkillsCounter(other.skillsCounter);
     levelTime           = other.levelTime;
 }
Ejemplo n.º 2
0
 public void LoadLevel()
 {
     LoadFromScene();
     map      = MapManager.Instance.SelectedMapAsset.LevelMap;
     settings = MapManager.Instance.SelectedMapAsset.Settings;
     RefreshScene();
     GameEvents.Map.OnMapLoaded.SafeInvoke();
 }