Work has begun on the Europe map.

This commit is contained in:
Jamie Greunbaum
2025-06-24 04:27:10 -04:00
parent 34146555fb
commit b117a18c5c
25 changed files with 13335 additions and 46 deletions
+5 -1
View File
@@ -53,7 +53,11 @@ public class FloorMap : UdonSharpBehaviour
public int NextCountry()
{
_CurrentCountry++;
Debug.LogError("Current location: " + _ChosenCities[_CurrentCountry] + ", " + _ChosenCountries[_CurrentCountry]);
if (_CurrentCountry >= MAX_SELECTED_COUNTRIES)
{
Debug.LogError("We ran out of countries. Just end the game here.");
return -1;
}
return _CurrentCountry;
}