mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-20 06:41:21 +00:00
- Merged GUI and world scenes into game scene with the GUI existing on a canvas layer - Ported over camera movement script
7 lines
153 B
GDScript
7 lines
153 B
GDScript
extends Panel
|
|
|
|
func _ready():
|
|
$citymenus/citynamelbl.text = CityData.city_name
|
|
|
|
func _process(delta):
|
|
$citystatus/moneylbl.text = str(CityData.budget)
|