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
This commit is contained in:
Anthony Foxclaw 2020-06-11 00:32:25 -04:00
parent f5c7355d5a
commit 8a40969703
6 changed files with 171 additions and 113 deletions

View file

@ -1,7 +1,7 @@
extends Panel
func _ready():
$CityMenus/CityNameLbl.text = CityData.city_name
$citymenus/citynamelbl.text = CityData.city_name
func _process(delta):
$CityStatus/MoneyLbl.text = str(CityData.budget)
$citystatus/moneylbl.text = str(CityData.budget)