citylimits/scripts/city_status.gd
Tony Bark d3350dd8a6 Redid interface
- 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
2021-05-27 13:54:08 -04:00

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)