mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-21 07:11:20 +00:00
This wound up being a bigger commit than I had initially planned. - New SC3k-style policies based on the advisor code. - Added license file to Font Awesome folder. - Refactored the advisor code so it can handle multiple files. - Updated icons. Should be more consistent now. - Replaced Sims with Animals in ticker text. - Moved dialogs to windows directory.
10 lines
327 B
GDScript
10 lines
327 B
GDScript
extends HBoxContainer
|
|
|
|
onready var city_name = $CityNameLbl
|
|
onready var budget = $BudgetCtr/BudgetLbl
|
|
onready var calendar = $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)
|