Menu sprites from Micropolis

- Removed UI from ZC's Dress Up (may return in a later time)
- Power stations
- Simplified UI
- Time now works
- Income and expenses
This commit is contained in:
Tony Bark 2021-05-20 04:54:00 -04:00
parent 0b60335591
commit 8170b69b7a
400 changed files with 1888 additions and 4809 deletions

View file

@ -2,9 +2,11 @@ extends BoxContainer
onready var city_name = $CityNameLbl
onready var money = $Money/MoneyLbl
onready var year = $YearLbl
func _ready():
city_name.text = SimData.city_name
func _process(delta):
money.text = str(SimData.budget)
year.text = str(SimData.year)