citylimits/scripts/city_status.gd
Tony Bark 8170b69b7a 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
2021-05-20 04:54:00 -04:00

12 lines
264 B
GDScript

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)