mirror of
https://github.com/tonytins/citylimits
synced 2025-12-19 22:24:42 -05:00
Moved settings button to side
- Added placeholder 0s to date
This commit is contained in:
parent
d3350dd8a6
commit
3fb152e7ba
3 changed files with 51 additions and 47 deletions
|
|
@ -7,4 +7,6 @@ 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)
|
||||
var day = "%02d" % SimData.day
|
||||
var month = "%02d" % SimData.month
|
||||
calendar.text = str(day) + "/" + str(month) + "/" + str(SimData.year)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue