citylimits/scripts/city_status.gd
Tony Bark d1da70a099 Streamlined advisor window
- Streamlined advisor window messages through signals.
- Added TODO file
- Ignore /except directory
- News ticker based on the advisor code with text from SC3k with news from the game, with some exceptions.
- New SC3k-like interface.
- Added icons from Font Awesome.
2021-05-26 03:35:52 -04:00

10 lines
272 B
GDScript

extends HBoxContainer
onready var city_name = $CityNameLbl
onready var budget = $BudgetLbl
onready var year = $YearCtr/YearLbl
func _process(delta):
city_name.text = SimData.city_name
budget.text = SimData.currency + str(SimData.budget)
year.text = str(SimData.year)