mirror of
https://github.com/tonytins/citylimits
synced 2025-12-18 13:54:43 -05:00
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.
This commit is contained in:
parent
e5505a3244
commit
d1da70a099
38 changed files with 1738 additions and 413 deletions
|
|
@ -2,9 +2,9 @@ extends HBoxContainer
|
|||
|
||||
onready var city_name = $CityNameLbl
|
||||
onready var budget = $BudgetLbl
|
||||
onready var year = $YearLbl
|
||||
onready var year = $YearCtr/YearLbl
|
||||
|
||||
func _process(delta):
|
||||
city_name.text = SimData.city_name
|
||||
budget.text = SimData.currency + str(SimData.budget)
|
||||
year.text = "Y" + str(SimData.year)
|
||||
year.text = str(SimData.year)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue