mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-21 07:11:20 +00:00
- Removed UI from ZC's Dress Up (may return in a later time) - Power stations - Simplified UI - Time now works - Income and expenses
12 lines
264 B
GDScript
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)
|