Moved settings button to side

- Added placeholder 0s to date
This commit is contained in:
Tony Bark 2021-05-27 14:35:24 -04:00
parent d3350dd8a6
commit 3fb152e7ba
3 changed files with 51 additions and 47 deletions

View file

@ -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)