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