mirror of
https://github.com/tonytins/citylimits
synced 2025-05-06 22:54:48 -04: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)
|