mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-21 07:11:20 +00:00
- Redid the interface with everything now at the bottom. - Advisors can now address the mayor and city - Updated tax window with red and green arrow icons - Tweaked income algorithm
10 lines
355 B
GDScript
10 lines
355 B
GDScript
extends HBoxContainer
|
|
|
|
onready var city_name = $NameDate/CityNameLbl
|
|
onready var budget = $PopBudget/BudgetCtr/BudgetLbl
|
|
onready var calendar = $NameDate/YearCtr/CalendarLbl
|
|
|
|
func _process(delta):
|
|
city_name.text = SimData.city_name
|
|
budget.text = str(SimData.budget)
|
|
calendar.text = str(SimData.day) + "/" + str(SimData.month) + "/" + str(SimData.year)
|