mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-21 07:11:20 +00:00
- 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.
10 lines
272 B
GDScript
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)
|