mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-21 07:11:20 +00:00
- Removed UI from ZC's Dress Up (may return in a later time) - Power stations - Simplified UI - Time now works - Income and expenses
9 lines
226 B
GDScript
9 lines
226 B
GDScript
extends Panel
|
|
|
|
onready var city_name = $Container/CityNameEdit.text
|
|
onready var budget = $Container/BudgetMenu
|
|
|
|
func _on_CreateBtn_pressed():
|
|
SimData.city_name = city_name
|
|
|
|
get_tree().change_scene("res://scenes/Game.tscn")
|