citylimits/scripts/gpanel.gd
Anthony Foxclaw 8a40969703 Merged varies scenes into game scene
- Merged GUI and world scenes into game scene with the GUI existing on a canvas layer
- Ported over camera movement script
2020-06-11 00:32:25 -04:00

7 lines
153 B
GDScript

extends Panel
func _ready():
$citymenus/citynamelbl.text = CityData.city_name
func _process(delta):
$citystatus/moneylbl.text = str(CityData.budget)